import { ProfileType } from '@parca/parser'; /** * Auto-selects the best flamechart "group by" dimension on first load. * * For On-GPU profiles: * - Selects all available from: ['node', 'gpu', 'stream'] * * For On-CPU profiles: * - Priority: cpu > cpuid > thread > thread_id * - Adds 'node' alongside the primary dimension if available * * For all other profile types: * - No auto-selection */ export declare const useAutoSelectDimension: (metadataLabels: string[] | undefined, flamechartDimension: string[] | undefined, setFlamechartDimension: (v: string[]) => void, profileType?: ProfileType) => void; //# sourceMappingURL=useAutoSelectDimension.d.ts.map