import type { PropType } from "vue"; import type { Style } from "../../core/types.js"; export type TLogSearchResultItem = Readonly<{ matchIndex: number; absoluteLineIndex: number; lineIndex: number; text: string; matchStartCell: number; matchEndCell: number; current?: boolean; }>; export type TLogSearchResultsSelectPayload = Readonly<{ matchIndex: number; result: TLogSearchResultItem; }>; export type TLogSearchResultsActiveChangePayload = Readonly<{ activeIndex: number; result: TLogSearchResultItem | null; }>; export declare const TLogSearchResults: import("vue").DefineComponent; default: () => never[]; }; activeIndex: { type: NumberConstructor; default: number; }; style: { type: PropType