import * as cxml from 'cxml'; import { Namespace } from './Namespace'; import { Type } from './Type'; import { MemberRef } from './MemberRef'; export declare class Member extends cxml.MemberBase> { constructor(name: string); getRef(): MemberRef; getProxy(): Type; typeList: Type[]; substitutes: Member; /** Proxy type containing other substitution group members. */ proxy: Type; comment: string; isExported: boolean; surrogateKey: number; private static nextKey; }