export type Authenticator = { name: string; authType: string; authTypeTitle: string; title?: string; options?: { [key: string]: any; }; sort?: number; }; export declare const AuthenticatorsContext: import("react").Context; export declare const useAuthenticator: (name: string) => Authenticator;