import { Namespace } from './namespace';
import { Type } from './type';
export declare class Interface extends Type {
    constructor(parent: Namespace, name: string, objectIntializer?: Partial<Interface>);
    readonly fileName: string;
    addGeneratedCodeAttribute: boolean;
    private readonly codeGenAttribute;
    readonly definition: string;
    readonly declaration: string;
}
//# sourceMappingURL=interface.d.ts.map