import type { Ref } from 'vue'; import type { TableStateParams } from '../types'; export default function useTableState(query?: Ref | (() => string)): { tableState: Ref<{ state: import("@kong/kongponents").TableState; hasData: boolean; } | null, TableStateParams | { state: import("@kong/kongponents").TableState; hasData: boolean; } | null>; hasRecords: Ref; hideTableToolbar: import("vue").ComputedRef; handleStateChange: (stateParams: TableStateParams) => void; }; //# sourceMappingURL=useTableState.d.ts.map