import React, { type FC } from 'react'; import { type ManagedStack } from '../StackNotificationManager'; import type { StackNotificationComponentProps } from '../StackNotificationManager/StackNotificationManager'; type Position = keyof Pick; type Variant = 'information' | 'confirmation' | 'error'; type Props = StackNotificationComponentProps<{ children?: React.ReactNode; active?: boolean; duration?: number; onHide?: () => void; icon?: React.ReactNode; variant?: Variant; }, Position>; export declare const BLOCK_NAME = "spui-Toast"; export declare const ANIMATION_DURATION = 300; export declare const DISPLAYING_TIMEOUT_DURATION: number; export declare const Toast: FC; export {}; //# sourceMappingURL=Toast.d.ts.map