import { Label, QueryServiceClient } from '@parca/client'; import { DateTimeRange } from '@parca/components'; import { ProfileSelection } from '..'; interface ProfileMetricsEmptyStateProps { message: string; } export declare const ProfileMetricsEmptyState: ({ message }: ProfileMetricsEmptyStateProps) => JSX.Element; interface ProfileMetricsGraphProps { queryClient: QueryServiceClient; queryExpression: string; profile: ProfileSelection | null; from: number; to: number; sumByLoading: boolean; sumBy: string[]; setTimeRange: (range: DateTimeRange) => void; addLabelMatcher: (labels: { key: string; value: string; } | Array<{ key: string; value: string; }>) => void; onPointClick: (timestamp: bigint, labels: Label[], queryExpression: string, duration: number) => void; comparing?: boolean; } declare const ProfileMetricsGraph: ({ queryClient, queryExpression, profile, from, to, setTimeRange, addLabelMatcher, onPointClick, comparing, sumBy, }: ProfileMetricsGraphProps) => JSX.Element; export default ProfileMetricsGraph; //# sourceMappingURL=index.d.ts.map