/**
 * Return the part of domain without suffix.
 *
 * Example: for domain 'foo.com', the result would be 'foo'.
 */
export default function getDomainWithoutSuffix(domain: string, suffix: string): string;
