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<unknown> & {
    onSubmit?: (values: any) => void;
};
export type AuthProps = AuthPageProps<BoxProps, CardProps, FormPropsType>;
/**
 * **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<AuthProps>;
//# sourceMappingURL=index.d.ts.map