import type { Schema } from "../schema"; import type { YieldOutput } from "../output/yield"; import type { ReturnOutput } from "../output/return"; /** * Callback function invoked when the multi-step form yields values. */ export type OnYield = (values: YieldOutput) => void; /** * Callback function invoked when the multi-step form returns values. */ export type OnReturn = (values: ReturnOutput) => void; //# sourceMappingURL=typed.d.ts.map