import { CardProps } from '@heroui/react'; import { ComponentProps } from 'react'; import { AuthUiSettingsView } from '../../../lib/auth/core/auth-view.js'; import { AthenaAuthUiOptions } from '../../../lib/auth/core/ui-options.js'; export interface SettingsPanelProps { className?: string; contentPending?: boolean; path?: string; ui?: AthenaAuthUiOptions; variant?: CardProps["variant"]; view?: AuthUiSettingsView; } export declare function SettingsPanelSkeleton({ label }: { label?: string; }): import("react").JSX.Element; export declare function SettingsPanel({ contentPending, path, ui, variant, view }: SettingsPanelProps & Omit, "children">): import("react").JSX.Element;