import { type HistoryListProps } from "./HistoryList.js"; import "./History.css"; /** * Props for the History component */ export interface HistoryProps extends Omit { /** Control popup open state */ open?: boolean; /** Callback when popup open state changes */ onOpenChange?: (open: boolean) => void; /** Anchor element for the popup */ anchorElement: HTMLElement | null; } /** * History component - wraps HistoryList in a Popup, and in a bottom Sheet in mobile mode * * @param props - Component props * @returns React component */ export declare function History(props: HistoryProps): import("react/jsx-runtime").JSX.Element;