import React, { FunctionComponent } from "react"; export declare const enum MESSAGE_TYPE { SUCCESS = "success", WARNING = "warning", NONE = "none" } export interface ConfirmationContentProps { messageType: MESSAGE_TYPE; title?: string; children?: React.ReactNode; btnText?: string; maxHeight?: number; className?: string; } export declare const DismissalButton: FunctionComponent<{ buttonText?: string; }>; export declare const ConfirmationContent: FunctionComponent;