type ContinueButtonProps = { onContinue?: (val: any) => void; onBack?: () => void; onCancel: () => void; title: string; backTitle?: string; isLoading?: boolean; isContinueEnabled?: boolean; }; /** * ContinueButton: Barra de pie de modal con botones de navegación. * Usa RsiButton para los botones internos y evitar redundancia de estilos. */ export declare const ContinueButton: ({ onContinue, onBack, onCancel, title, backTitle, isLoading, isContinueEnabled, }: ContinueButtonProps) => import("react/jsx-runtime").JSX.Element; export {};