import React from "react"; import type { AuthPageProps } from "@refinedev/core"; import type { BoxProps, CardProps } from "@mantine/core"; import type { UseFormInput } from "@mantine/form/lib/types"; export type FormPropsType = UseFormInput & { onSubmit?: (values: any) => void; }; export type AuthProps = AuthPageProps; /** * **refine** has a default auth page form served on the `/login` route when the `authProvider` configuration is provided. * @param title is not implemented yet. * @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