export type Email = string & {
    __brand: 'Email';
};
export declare function createEmail(email: string): Email;
