import * as react_jsx_runtime from 'react/jsx-runtime'; import * as React from 'react'; type AuthPageLayoutProps = { logo?: React.ReactNode; title?: string; subtitle?: string; wide?: boolean; className?: string; children: React.ReactNode; }; declare function AuthPageLayout({ logo, title, subtitle, wide, className, children, }: AuthPageLayoutProps): react_jsx_runtime.JSX.Element; export { AuthPageLayout, type AuthPageLayoutProps };