interface AuthPageLayoutProps { title: string; subtitle: string; errorMessage: string | null; showLogo?: boolean; renderInAppLayout?: boolean; children: React.ReactNode; } declare const AuthPageLayout: React.FC; export default AuthPageLayout;