import { PhysicalLocation } from '../../..';
import List from '../List';
import GroupPerson from './GroupPerson';
declare const _default: {
    new (): {
        /**
         * ID
         */
        _id: number;
        id: number;
        /**
         * ID do Pai
         */
        _parent: number;
        parent: number;
        /**
         * Nome do Grupo
         */
        _name: string;
        name: string;
        /**
         * Local Físico
         */
        _physicalLocation: PhysicalLocation;
        physicalLocation: PhysicalLocation;
        /**
         * Vaga de Estacionamento
         */
        _parkingSpace: number;
        parkingSpace: number;
        /**
         * Vaga de Estacionamento em Uso
         */
        _parkingSpaceInUse: number;
        parkingSpaceInUse: number;
        /**
         * Pessoas do Grupo
         */
        _people: List<GroupPerson>;
        people: List<GroupPerson>;
        /**
         * Caminho hierárquico completo
         */
        _fullHierarchicalPath: string;
        fullHierarchicalPath: string;
        toJsonString(): string; /**
         * Nome do Grupo
         */
        replaceArray(json: string): string;
        toJson(): any;
        isArray(what: any): boolean;
    };
};
export = _default;
