import * as ts from 'typescript'; /** * Check whether a declaration is abstract * * @param declaration declaration to check * * @public */ export declare function isAbstractDeclaration(declaration: ts.Declaration): boolean; /** * Check whether a declaration is visible outside its respective file * @param declaration Declaration to check * * @public */ export declare function isDeclarationExported(declaration: ts.Declaration): boolean; //# sourceMappingURL=declaration.d.ts.map