/** * Animation duration for toast transitions in milliseconds */ export declare const ANIMATION_DURATION = 300; /** * Total padding around the toast stack (top + bottom approximation) */ export declare const TOAST_STACK_PADDING = 48; /** * Height of the expand/collapse button plus its padding */ export declare const EXPAND_BUTTON_HEIGHT_WITH_PADDING = 64; /** * Scroll threshold in pixels from bottom to hide bottom gradient */ export declare const SCROLL_THRESHOLD = 64; /** * Throttle interval for scroll and resize event handlers in milliseconds */ export declare const EVENT_THROTTLE_MS = 16;