import * as React from "react"; /** * Props for the ThreadDropdown component * @interface * @extends React.HTMLAttributes */ export interface ThreadDropdownProps extends React.HTMLAttributes { /** Optional context key for filtering threads */ contextKey?: string; /** Optional callback function called when the current thread changes */ onThreadChange?: () => void; } /** * A component that displays a dropdown menu for managing chat threads with keyboard shortcuts * @component * @example * ```tsx * console.log('Thread changed')} * className="custom-styles" * /> * ``` */ export declare const ThreadDropdown: React.ForwardRefExoticComponent>; //# sourceMappingURL=thread-dropdown.d.ts.map