import { InterfaceDeclaration as tsInterfaceDeclaration } from 'typescript'; import { NamedDeclaration } from './named_declaration'; export declare class InterfaceDeclaration extends NamedDeclaration { private typeParameters; private heritageClauses?; private members; constructor(node: tsInterfaceDeclaration); }