/// import { FooterLabels } from './types'; declare type Props = { isLastStep: boolean; nextDisabled: boolean; nextStep: () => void; singleStep: boolean; previousDisabled?: boolean; previousStep?: () => void; labels?: FooterLabels; }; export declare const StepFlowFooter: (props: Props) => JSX.Element; export {};