import * as react_jsx_runtime from 'react/jsx-runtime'; import * as React from 'react'; interface TableSearchRecentsPopoverProps { open: boolean; onOpenChange: (open: boolean) => void; items: string[]; onSelect: (query: string) => void; onClear?: () => void; anchor: React.ReactNode; title?: string; clearLabel?: string; className?: string; } declare function TableSearchRecentsPopover({ open, onOpenChange, items, onSelect, onClear, anchor, title, clearLabel, className, }: TableSearchRecentsPopoverProps): react_jsx_runtime.JSX.Element; export { TableSearchRecentsPopover, type TableSearchRecentsPopoverProps };