import * as React from 'react'; import { BoxProps } from '../Box'; import { OverlayProps } from '../Overlay'; import { StackProps } from '../Stack'; import { ToastProps } from './Toast'; export declare type LocalToastManagerProps = { fade?: boolean; isStacked?: boolean; slide?: boolean; spacing?: StackProps['spacing']; overlayProps?: Partial; toastProps?: Partial; }; export declare type ToastManagerProps = BoxProps & LocalToastManagerProps; export declare const ToastManager: React.ForwardRefExoticComponent & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };