import React from "react"; import type { AuthPageProps } from "@refinedev/core"; import type { BoxProps } from "@chakra-ui/react"; import type { UseFormProps } from "@refinedev/react-hook-form"; export interface FormPropsType extends UseFormProps { onSubmit?: (values: TFormType) => void; } export type AuthProps = AuthPageProps>; /** * **refine** has a default auth page form which is served on `/login` route when the `authProvider` configuration is provided. * @param title is not implemented yet. * @see {@link https://refine.dev/docs/api-reference/chakra-ui/components/chakra-auth-page/} for more details. */ export declare const AuthPage: React.FC; //# sourceMappingURL=index.d.ts.map