import { PropsWithChildren, ReactElement } from 'react';
export type Props = {
    mode: 'confirmation' | 'error' | 'info' | 'success' | 'warning';
    dismissible?: boolean;
    onDismiss?: () => void;
    className?: string;
};
declare const Notice: (props: PropsWithChildren<Props>) => ReactElement;
export default Notice;
