import { type SectionsRetailProps } from '../../retail/model/InputSectionsType'; export interface DebitFormStepProps { step: number; sections: SectionsRetailProps[]; onNextStep: () => void; onPrevStep: () => void; onFinish?: () => void; } export declare const DebitFormStep: import("@redneckz/uni-jsx").UNIComponent;