import { BigStat } from "./sqm-big-stat"; import { BigStatViewProps } from "./sqm-big-stat-view"; export declare const StatPaths: string[]; export declare const StatPatterns: RegExp[]; export declare function parsePath(type: string): string[] | undefined; export declare function useBigStat({ statType }: BigStat): { label: string; props: { statvalue: string; }; }; export declare type BigStatHook = { props: BigStatViewProps; label: string; };