import { XMLElement } from '../../common/soap/xmlElement';
import { TeamAccessType } from './teamAccessType';
export declare class Team extends XMLElement {
    protected static XSI_TYPE: string;
    id: number;
    name: string;
    description: string;
    hasAllCompanies: boolean;
    hasAllInventory: boolean;
    teamAccessType: TeamAccessType;
    constructor(id?: number, name?: string, description?: string, hasAllCompanies?: boolean, hasAllInventory?: boolean, teamAccessType?: TeamAccessType);
}
