import type { Ref } from './SpecComponents.ts';
export type NumInGroup = {
    id: number;
    added?: string;
    addedEP?: string;
    updated?: string;
    updatedEP?: string;
    deprecated?: string;
    deprecatedEP?: string;
    description?: string;
};
export interface ISpecGroups {
    id: number;
    name: string;
    category: string;
    abbrName: string;
    added: string;
    description?: string;
    fieldRef?: Ref[];
    groupRef?: Ref[];
    componentRef?: Ref[];
    numInGroup?: NumInGroup;
    addedEP?: string;
    updated?: string;
    updatedEP?: string;
    deprecated?: string;
    deprecatedEP?: string;
}
export declare const GROUPS: ISpecGroups[];
