export declare const DEFAULT_TOAST_TIMEOUT_DURATION = 7000; export declare const TOAST_ANIMATION_DURATION = 500; export declare const positions: { readonly topLeft: "top-left"; readonly topCenter: "top-center"; readonly topRight: "top-right"; readonly bottomLeft: "bottom-left"; readonly bottomCenter: "bottom-center"; readonly bottomRight: "bottom-right"; }; export declare const toastContainerPositions: readonly ["bottom-left", "bottom-center", "bottom-right", "top-left", "top-center", "top-right"]; export type ToastContainerPositions = typeof toastContainerPositions[number]; export declare const toastAppearances: readonly ["information", "positive", "warning", "negative"]; export type ToastAppearances = typeof toastAppearances[number];