import type { PropType } from "vue"; import type { Style } from "../../core/types.js"; import type { TLogViewScrollMetrics } from "./TLogView.js"; export type TLogScrollbarMetrics = TLogViewScrollMetrics; export type TLogScrollbarScrollToPayload = number; export type TLogScrollbarScrollByPayload = number; export type TLogScrollbarMarker = Readonly<{ id?: string | number; visualRow: number; current?: boolean; estimated?: boolean; payload?: unknown; }>; export type TLogScrollbarMarkerClickPayload = Readonly<{ marker: TLogScrollbarMarker; markerIndex: number; visualRow: number; cellX: number; cellY: number; }>; export declare const TLogScrollbar: import("vue").DefineComponent; default: null; }; style: { type: PropType