import React from 'react';
export type SubotInlineFooterProps = {
    onBack?: () => void;
    onNext?: () => void;
    hideBack?: boolean;
    hideNext?: boolean;
    backText?: string;
    nextText?: string;
    backProps?: {
        [key: string]: any;
    };
    nextProps?: {
        [key: string]: any;
    };
};
declare const _default: React.MemoExoticComponent<({ onBack, onNext: onSubmit, hideBack, hideNext, nextText, backProps, nextProps, }: SubotInlineFooterProps) => React.JSX.Element>;
export default _default;
