import { PropsWithChildren, ReactNode } from 'react'; import { WithClassName } from '../../utils/WithClassName'; export declare function Notice({ children, title, subtitle, action, ...extra }: PropsWithChildren<{ title: ReactNode; subtitle: ReactNode; action: ReactNode; }> & WithClassName): JSX.Element;