import * as React from 'react';
interface IProps {
    Title: string;
    CallBack: ((confirmed: boolean) => void);
    Show: boolean;
    Message: string;
    ShowCancel?: boolean;
}
declare const Warning: React.FunctionComponent<IProps>;
export default Warning;
