import * as React from 'react';
import { AlertButton } from '../../../AdaptableState/AlertState';
import { AdaptableAlert } from '../../../AdaptableState/Common/AdaptableAlert';
import { AdaptableApi } from '../../../Api/AdaptableApi';
import { AlertFormContext } from '../../../types';
import { AlertType } from '../Utilities/getAlertType';
type AlertButtonsEditorProps = {
    AlertButtons: AlertButton<AlertFormContext>[];
    onChange: (buttons: AlertButton<AlertFormContext>[]) => void;
    api: AdaptableApi;
    adaptableAlert: AdaptableAlert;
    alertType: AlertType;
};
export declare const AlertButtonsEditor: (props: AlertButtonsEditorProps) => React.JSX.Element;
export {};
