import type { FromSchema } from 'json-schema-to-ts';
export declare const signupDataSchema: {
    readonly $id: "#/components/schemas/signupDataSchema";
    readonly type: "object";
    readonly description: "An object describing the user and company signup data.";
    readonly additionalProperties: false;
    readonly properties: {
        readonly shouldSetPassword: {
            readonly type: "boolean";
            readonly description: "Whether the user should set a password as part of the signup process.";
            readonly example: false;
        };
        readonly name: {
            readonly type: "string";
            readonly description: "The user's name.";
            readonly example: "Mark Scout";
        };
        readonly companyRole: {
            readonly type: "string";
            readonly description: "The role of the user within the company.";
            readonly example: "Developer";
        };
        readonly companyName: {
            readonly type: "string";
            readonly description: "The name of the company.";
            readonly example: "Lumon Industries";
        };
        readonly companyIsNA: {
            readonly type: "boolean";
            readonly description: "Whether the company is based in North America.";
            readonly example: true;
        };
        readonly productUpdatesEmailConsent: {
            readonly type: "boolean";
            readonly description: "Whether the user has consented to receive product update emails.";
            readonly example: true;
        };
    };
    readonly components: {};
};
export type SignupDataSchema = FromSchema<typeof signupDataSchema>;
//# sourceMappingURL=signup-data-schema.d.ts.map