export declare type PopupType = "menu" | "listbox" | "dialog"; export interface UsePopupAriaPropsOptions { id?: string; } export declare function usePopupAriaProps(isOpen: boolean, popupType: PopupType, { id }?: UsePopupAriaPropsOptions): { overlayId: string; overlayProps: { id: string; }; triggerProps: { "aria-controls": string; "aria-expanded": boolean; "aria-haspopup": PopupType; }; };