import * as React from "react"; interface LoginPageProps extends React.HTMLAttributes { children?: React.ReactNode; showLogo?: boolean; logo?: React.ReactNode; title?: string; subtitle?: string; maxWidth?: "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl"; background?: "default" | "gradient" | "pattern"; backgroundImage?: string; showBackgroundImage?: boolean; } declare const LoginPage: React.ForwardRefExoticComponent>; export { LoginPage }; //# sourceMappingURL=login-page.d.ts.map