import type { KeyboardEvent } from '../../../core/types/events.js'; interface InformationOverlayTriggerProps { isDisabled?: boolean; 'aria-expanded'?: boolean | 'true' | 'false'; 'aria-haspopup'?: boolean | 'menu' | 'listbox' | 'tree' | 'grid' | 'dialog' | 'true' | 'false'; 'aria-controls'?: string; onKeyDown?: (e: KeyboardEvent) => void; } export interface InformationOverlayContextType { color: 'neutral' | 'primary' | 'success' | 'warning' | 'critical'; overlayTriggerProps: InformationOverlayTriggerProps; id: string; isOpen: boolean; } export declare const InformationOverlayContext: import("react").Context; export {};