import type { Modal as Default } from "../../../containers/modals/Modal";
export interface Alert extends Default {
    buttonLeft?: {
        name?: string;
        onClick?: Function;
    };
    buttonRight?: {
        name?: string;
        onClick?: Function;
    };
}
export default function Alert(props: Alert): import("react").JSX.Element;
//# sourceMappingURL=Alert.d.ts.map