declare const ACCOUNT_CLAIM = "https://claims.cimpress.io/account"; /** Represents the profile data of the currently logged in user. */ export interface SimpleAuthProfile { /** The user's full name. */ name?: string; /** The user's email address. */ email?: string; /** A URL to the user's avatar. */ picture?: string; /** The ID of the account associated with the user. */ [ACCOUNT_CLAIM]?: string; } export interface SimpleAuthToolProps { /** The profile data of the currently logged in user. */ profile?: SimpleAuthProfile; /** The name of the account associated with the user. */ accountName?: string; /** A function called when the user requests to log in. */ onLoginRequested: () => void; /** A function called when the user requests to log out. */ onLogoutRequested: () => void; } /** A header tool for simple authentication. */ export declare function SimpleAuthTool({ profile, accountName, onLoginRequested, onLogoutRequested }: SimpleAuthToolProps): import("react/jsx-runtime").JSX.Element; export declare namespace SimpleAuthTool { var displayName: string; } export {}; //# sourceMappingURL=simple-auth-tool.d.ts.map