import { type Step } from '../stepper/Stepper'; export interface FlowNavigationProps { /** @default 0 */ activeStep?: number; avatar?: React.ReactNode; /** @default */ logo?: React.ReactNode; /** @default false */ done?: boolean; /** Called when the close button is clicked. If not provided the close button won't show */ onClose?: () => void; /** Called when the back button is clicked. If not provided the back button won't show. The back button only shows on small screens */ onGoBack?: () => void; /** Steps to be displayed in stepper. If you don't need the stepper, please use OverlayHeader instead */ steps: readonly Step[]; } declare const FlowNavigation: ({ activeStep, avatar, logo, done, onClose, onGoBack, steps, }: FlowNavigationProps) => import("react").JSX.Element; export default FlowNavigation; //# sourceMappingURL=FlowNavigation.d.ts.map