import React, { PropsWithChildren } from 'react'; import { AlertProps } from './Alert'; type AlertContextState = { addToast: (params: AlertProps) => void; }; export declare function useAlertProvider(): AlertContextState; export type AlertProviderProps = PropsWithChildren<{ /** * Maximum count of stacked notifications. Defaults to 3. * @defaultValue 3 */ maxStack?: number; }>; export declare function AlertProvider({ maxStack, children, }: AlertProviderProps): React.ReactElement; export {}; //# sourceMappingURL=AlertProvider.d.ts.map