export declare const RegisterUser = "\nmutation registerUser($record: CreateOneUserInput!) {\n registerUser(record: $record) {\n recordId\n record {\n {fragment}\n }\n }\n}\n"; export declare const AuthUser = "\nquery Auth($email: String, $password: String, $type: String) {\n authUser(email: $email, password: $password, type: $type)\n}\n"; export declare const UserTypeByEmail = "\nquery UserTypeByEmail($email: String!) {\n userTypeByEmail(email: $email)\n}"; export declare const ForgotPassword = "\n mutation ForgotPassword($email: String!, $type: String!) {\n forgotPassword(email: $email, type: $type)\n }\n"; export declare const RefreshToken = "\n mutation RefreshToken($token: String!) {\n refreshToken(token: $token)\n }\n"; export declare const SendLeadEmail = "\n mutation SendLeadEmail($subject: String!, $html: String!) {\n sendLeadEmail(subject: $subject, html: $html)\n }\n";