import { LabelsResponse, QueryServiceClient } from '@parca/client'; export interface ILabelValuesResult { response: string[]; error?: Error; } interface UseLabelValues { result: ILabelValuesResult; loading: boolean; refetch: () => Promise; } export interface ILabelNamesResult { response?: LabelsResponse; error?: Error; } interface UseLabelNames { result: ILabelNamesResult; loading: boolean; refetch: () => Promise; } export declare const useLabelNames: (client: QueryServiceClient, profileType: string, start?: number, end?: number, match?: string[]) => UseLabelNames; export declare const useLabelValues: (client: QueryServiceClient, labelName: string, profileType: string, start?: number, end?: number) => UseLabelValues; export {}; //# sourceMappingURL=useLabels.d.ts.map