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