import { z } from 'zod';
import { StepComponentProps } from '../types/steps';
export declare const getStartedSchema: z.ZodObject<{
    email: z.ZodString;
    firstName: z.ZodString;
    lastName: z.ZodString;
    isAgreed: z.ZodOptional<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
    email: string;
    firstName: string;
    lastName: string;
    isAgreed?: boolean | undefined;
}, {
    email: string;
    firstName: string;
    lastName: string;
    isAgreed?: boolean | undefined;
}>;
export type GetStartedFormData = z.infer<typeof getStartedSchema>;
export interface GetStartedProps extends StepComponentProps<GetStartedFormData> {
    showAgreement?: boolean;
}
export declare const GetStarted: React.FC<GetStartedProps>;
export default GetStarted;
