import React from "react"; //#region src/components-page/account-settings.d.ts declare const iconMap: { readonly Contact: React.ForwardRefExoticComponent & React.RefAttributes>; readonly ShieldCheck: React.ForwardRefExoticComponent & React.RefAttributes>; readonly Bell: React.ForwardRefExoticComponent & React.RefAttributes>; readonly Monitor: React.ForwardRefExoticComponent & React.RefAttributes>; readonly Key: React.ForwardRefExoticComponent & React.RefAttributes>; readonly Settings: React.ForwardRefExoticComponent & React.RefAttributes>; readonly CirclePlus: React.ForwardRefExoticComponent & React.RefAttributes>; readonly CreditCard: React.ForwardRefExoticComponent & React.RefAttributes>; }; declare function AccountSettings(props: { fullPage?: boolean; extraItems?: ({ title: string; content: React.ReactNode; id: string; } & ({ icon?: React.ReactNode; } | { iconName?: keyof typeof iconMap; }))[]; mockUser?: { displayName?: string; profileImageUrl?: string; }; mockApiKeys?: Array<{ id: string; description: string; createdAt: string; expiresAt?: string; manuallyRevokedAt?: string; }>; mockProject?: { config: { allowUserApiKeys: boolean; clientTeamCreationEnabled: boolean; }; }; mockSessions?: Array<{ id: string; isCurrentSession: boolean; isImpersonation?: boolean; createdAt: string; lastUsedAt?: string; geoInfo?: { ip?: string; cityName?: string; }; }>; }): import("react/jsx-runtime").JSX.Element | null; //#endregion export { AccountSettings }; //# sourceMappingURL=account-settings.d.ts.map