import type { PopoverNextRef, PopoverProps } from "@blueprintjs/core";
/**
 * Reusable collection of props for components in this package which render a popover
 * and need to provide some degree of customization for that popover.
 */
export interface DatetimePopoverProps {
    /**
     * Props to spread to `Popover`.
     */
    popoverProps?: Partial<Omit<PopoverProps, "autoFocus" | "content" | "defaultIsOpen" | "disabled" | "enforceFocus" | "fill" | "renderTarget">>;
    /**
     * Optional ref to the popover. `popoverRef.current?.reposition()` re-runs position
     * calculation — useful when the target moves in a way the popover doesn't observe
     * automatically (e.g. a parent layout change that doesn't trigger a resize).
     *
     * For a ref to the popover's floating DOM element, use `popoverProps.popoverRef`.
     */
    popoverRef?: React.RefObject<PopoverNextRef>;
}
