import { SourceFile, MethodDeclaration, PropertyDeclaration } from 'ts-morph'; export declare function getExistClassMethodsDeclaration(source: SourceFile, className: string): MethodDeclaration[]; export declare function getExistClassMethodsDeclaration(source: SourceFile, className: string, methodName: string): MethodDeclaration; export declare function getExistClassMethods(source: SourceFile, className: string): string[]; export declare function getExistClassPropDeclarations(source: SourceFile, className: string): PropertyDeclaration[]; export declare function getExistClassPropDeclarations(source: SourceFile, className: string, propName: string): PropertyDeclaration[]; export declare function getExistClassProps(source: SourceFile, className: string): string[]; export declare function addPlainClassMethods(source: SourceFile, className: string, methods: string[], apply?: boolean): void; export declare function getClassDecByName(source: SourceFile, className: string): import("ts-morph").ClassDeclaration; //# sourceMappingURL=class.d.ts.map