import * as z from "zod/v3"; export type StepsOverrides = { /** * Passing the provider id and the provider specific configurations */ providers?: { [k: string]: { [k: string]: any; }; } | undefined; /** * Override the or remove the layout for this specific step */ layoutId?: string | null | undefined; }; /** @internal */ export type StepsOverrides$Outbound = { providers?: { [k: string]: { [k: string]: any; }; } | undefined; layoutId?: string | null | undefined; }; /** @internal */ export declare const StepsOverrides$outboundSchema: z.ZodType; export declare function stepsOverridesToJSON(stepsOverrides: StepsOverrides): string; //# sourceMappingURL=stepsoverrides.d.ts.map