import { CardProps } from '@heroui/react'; import { ComponentProps } from 'react'; export interface SecuritySettingsProps { className?: string; variant?: CardProps["variant"]; } /** * Renders the security settings layout including password management, linked accounts, and active sessions. * * ChangePassword is rendered when password authentication is enabled; LinkedAccounts is rendered when social providers are present. * Each registered auth plugin may contribute `securityCards` (for example passkeys). * * @param className - Optional additional CSS class names for the outer container. * @param variant - Card variant forwarded to each security settings card. * @returns The security settings container as a JSX element. */ export declare function SecuritySettings({ className, variant, ...props }: SecuritySettingsProps & ComponentProps<"div">): import("react").JSX.Element;