interface CloseOnEscapeOptions { active: boolean | undefined; onTrigger?: () => void; onKeyDown?: (event: React.KeyboardEvent) => void; } export declare function closeOnEscape(callback?: (event: any) => void, options?: CloseOnEscapeOptions): (event: React.KeyboardEvent) => void; export interface PopoverDropdownProps extends React.ComponentProps<"div"> { } export declare function PopoverDropdown(props: PopoverDropdownProps): false | import("react").JSX.Element | null | undefined; export {};