import RecordEntry from "./RecordEntry";
import { GroupType } from "../ModfileDefs";
export declare type ChildEntry = GroupEntry | RecordEntry;
/**
 * Group (container) entry.
 */
export default class GroupEntry {
    type: GroupType;
    label: number;
    children: ChildEntry[];
    constructor(type: GroupType, label: number, children?: ChildEntry[]);
    /**
     * Convert to a more user-friendly format.
     */
    toJSON(): any;
}
