export declare type TOidcProviderType = 'unknown' | 'google'; export interface IAuthentication { accessToken: string; isAuthenticated: boolean; oidcAccessToken: string; oidcProviderType: TOidcProviderType; isGoogleSignedIn: boolean; authenticationInProgress: boolean; login: string; password: string; workflowToken: string; } export declare const emptyAuthentication: IAuthentication;