import { ReactNode } from 'react'; type AuthContainerProps = { subtitle?: ReactNode; title?: ReactNode; children: ReactNode; }; export declare const AuthContainer: ({ subtitle, title, children, }: AuthContainerProps) => import("react/jsx-runtime").JSX.Element; export {};