import React from 'react'; import { type AriaPopoverProps } from 'react-aria'; import { type OverlayTriggerState } from 'react-stately'; declare const defaultEnglish: { readonly close: "close"; }; export type PopoverTextContent = Record; /** * Internal props for the Popover component. */ export interface PopoverProps extends Omit { /** * Content to display inside the popover */ children: React.ReactNode; /** * State object that controls the popover's open/close state */ state: OverlayTriggerState; /** * Reference to the trigger element for positioning */ triggerRef: React.RefObject; /** * Language content override */ lang?: Partial; } export declare const Popover: { ({ children, offset, state, triggerRef, lang, ...props }: PopoverProps): React.JSX.Element; displayName: string; }; export {}; //# sourceMappingURL=Popover.d.ts.map