import type { BaseWorkflowProps, NoteConfig, WorkflowConfiguration } from "@clutch-sh/core"; import type { WizardChild } from "@clutch-sh/wizard"; interface ResolverConfigProps { resolverType: string; } interface ConfirmConfigProps { notes?: NoteConfig[]; } export interface WorkflowProps extends BaseWorkflowProps, ResolverConfigProps, ConfirmConfigProps { } export interface ResolverChild extends WizardChild, ResolverConfigProps { } export interface ConfirmChild extends WizardChild, ConfirmConfigProps { } declare const register: () => WorkflowConfiguration; export default register; //# sourceMappingURL=index.d.ts.map