import { ContainedFieldSet } from '../contained/contained-field-set';
import { SimpleFieldDefinition } from './simple-field-definition';
export declare class GroupFieldDefinition extends ContainedFieldSet {
    readonly name: string;
    readonly abbreviation: string;
    readonly category: string | null;
    readonly noOfField: SimpleFieldDefinition | null;
    readonly description: string | null;
    constructor(name: string, abbreviation: string, category: string | null, noOfField: SimpleFieldDefinition | null, description: string | null);
    getPrefix(): string;
}
