import { default as React } from 'react';
import { FormButton } from './types';
interface CustomButtonsProps {
    buttons: FormButton[];
    disabled?: boolean;
    testIdPrefix?: string;
}
export declare const CustomButtons: React.FC<CustomButtonsProps>;
export {};
