import * as z from "zod"; export declare const GoogleAuthButtonPropsSchema: z.ZodObject<{ onClick: z.ZodFunction, z.ZodVoid>; disabled: z.ZodOptional; text: z.ZodOptional; dataTestId: z.ZodOptional; }, "strip", z.ZodTypeAny, { onClick: () => void; text?: string | undefined; disabled?: boolean | undefined; dataTestId?: string | undefined; }, { onClick: () => void; text?: string | undefined; disabled?: boolean | undefined; dataTestId?: string | undefined; }>; export type GoogleAuthButtonProps = z.infer;