export type RegisterInput = {
    name: string;
    email: string;
    password: string;
    passwordConfirm: string;
};
declare const RegisterPage: () => import("react/jsx-runtime").JSX.Element;
export default RegisterPage;
