import * as S from "../styled-components"; interface IMessageBox extends S.IMainCssType { visible?: boolean; message?: string; onClickYes?: () => void; onClickNo?: () => void; onOutSideClick?: () => void; backgroundColor?: string; color?: string; height?: string | number; width?: string | number; } export declare const MessageBox: ({ visible, message, onClickNo, onClickYes, onOutSideClick, backgroundColor, height, color, width, className, css, }: IMessageBox) => JSX.Element; export {};