export declare namespace ConfigUser { type ConfigUserType = { email?: boolean; customerId?: string; }; function localUserFilePath(): Promise; function loadOrStoreCustomerId(): Promise; function create({ email, subscribed, company, }: { email: string; subscribed?: boolean; company: string; }): Promise; function get(): Promise; function isAuthenticated(): Promise; }