import type { PropsWithChildren } from "react";
export type NoticePropsType = PropsWithChildren<{
    withIcon?: boolean;
}>;
export declare const Notice: ({ withIcon, children }: NoticePropsType) => import("react/jsx-runtime").JSX.Element;
export default Notice;
