import { BoxProps } from "@chakra-ui/react"; /** Props supported by the {@link Notifier} component. */ export interface NotifierProps { /** * Props to be added to the notifier's root container. * * NOTE: Chakra's toaster currently hard codes many style properties using element styles. * These styles cannot be easily overwritten, unless one uses `!important`. **/ rootProps?: BoxProps; } /** * Shows notifications sent via the `NotificationService`. * * Only one instance of `` should be present in the application. * It currently does not matter where the Notifier is located in the react tree. * * ```ts * import { Notifier } from "@open-pioneer/notifier"; * * export function AppUI() { * return ( * <> * *

Your application

* * ); * } * ``` */ export declare function Notifier(props: NotifierProps): false | import("react").JSX.Element;