import { AutoEncoder } from '@simonbackx/simple-encoding'; export declare class VerifyEmailRequest extends AutoEncoder { /** * Token that the client received when creating the code or via email link (might decide to drop that last one) */ token: string; code: string; } export declare class PollEmailVerificationRequest extends AutoEncoder { /** * Token that the client received when creating the code or via email link (might decide to drop that last one) */ token: string; } export declare class PollEmailVerificationResponse extends AutoEncoder { /** * Token that the client received when creating the code or via email link (might decide to drop that last one) */ valid: boolean; } //# sourceMappingURL=VerifyEmailRequest.d.ts.map