import type { ReactNode } from 'react'; interface AuthCardProps { children: ReactNode; className?: string; horizontal?: boolean; } export declare function AuthCard({ children, className, horizontal }: Readonly): import("react/jsx-runtime").JSX.Element; export {};