import { IField } from './interface'; import { TSInterfaceDeclaration, ClassDeclaration } from '@babel/types'; export declare function parseTsInterfaceDeclaration(targetInterface: TSInterfaceDeclaration): IField[]; export declare function parseClassDeclaration(target: ClassDeclaration): IField[];