export interface NavigationPanelProps { showPrev?: boolean; prevText?: string; nextText?: string; actualStep: number; totalSteps: number; isSubmitting: boolean; onBack?: () => void; onNext?: () => void; [props: string]: any; } export declare const NavigationPanel: ({ showPrev, prevText, nextText, actualStep, totalSteps, isSubmitting, onBack, onNext, ...props }: NavigationPanelProps) => import("@emotion/react/jsx-runtime").JSX.Element;