import type { ListValues } from "../values"; import type { Yield } from "../values/yield"; import type { Return } from "../values/return"; /** * Callback function invoked when the multi-step form yields values. */ export type OnYield = (values: Yield) => void; /** * Callback function invoked when the multi-step form returns values. */ export type OnReturn = (values: Return) => void; //# sourceMappingURL=custom.d.ts.map