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