import * as React from 'react';
import { SharedEntityRowProps } from '../Components/SharedProps/ConfigEntityRowProps';
import { AlertDefinition } from '../../AdaptableState/AlertState';
import { AdaptableMessageType } from '../../AdaptableState/Common/AdaptableMessageType';
export interface AlertEntityRowProps extends SharedEntityRowProps<AlertEntityRow> {
    onChangeMessageType: (alertDefinition: AlertDefinition, Type: AdaptableMessageType) => void;
}
export declare class AlertEntityRow extends React.Component<AlertEntityRowProps, {}> {
    render(): any;
    onMessageTypeChanged(alertDefinition: AlertDefinition, value: AdaptableMessageType): void;
}
