/// <reference types="react" />
export interface IProps {
    children: string;
    rules: string;
}
declare const CustomMessage: import("react").MemoExoticComponent<(props: IProps) => any>;
export default CustomMessage;
