import type { PropType } from "vue"; import type { Style } from "../../core/types.js"; import type { TLogViewSearchError, TLogViewSearchState } from "./TLogView.js"; export type TLogSearchPagerState = Readonly<{ page: number; pageCount: number; matchCount: number; status: TLogViewSearchState["status"]; error?: TLogViewSearchError | null; }>; export type TLogSearchPagerPageChangePayload = Readonly<{ page: number; }>; export declare const TLogSearchPager: import("vue").DefineComponent; default: null; }; style: { type: PropType