import React from "react"; import { AuthPageProps } from "@pankod/refine-core"; import { BoxProps, CardProps } from "@mantine/core"; import { UseFormInput } from "@mantine/form/lib/types"; export declare type FormPropsType = UseFormInput & { onSubmit?: (values: any) => void; }; export declare type AuthProps = AuthPageProps; /** * **refine** has a default auth page form served on the `/login` route when the `authProvider` configuration is provided. * @see {@link https://refine.dev/docs/api-reference/mantine/components/mantine-auth-page/} for more details. */ export declare const AuthPage: React.FC; //# sourceMappingURL=index.d.ts.map