import { Component } from 'react'; declare type Props = Readonly<{ children: (props: any) => any; className?: string | null; }>; declare type Notify = Readonly<{ id?: string; title: string; text: string; kind: string; }>; declare type State = Readonly<{ messages: Notify[] | null; }>; export default class Notifications extends Component { state: { messages: never[]; }; dismiss: (messageID: string) => void; notify: ({ id, title, text, kind, }: Notify) => void; render(): JSX.Element; } export {}; //# sourceMappingURL=index.d.ts.map