export declare const PAGE_STATE: { LOGIN: string; REGISTER: string; RESET_PASSWORD: string; }; export type ThirdPartyPlatform = 'Google' | 'Facebook'; type ThirdPartyLoginConfig = { name: ThirdPartyPlatform; type: 'GOOGLE' | 'FACEBOOK'; icon: string; }; export declare const thirdPartyLoginConfig: ThirdPartyLoginConfig[]; type ButtonLabel = { [K in string]: string; }; export declare const buttonLabels: ButtonLabel; export {};