import ts from 'typescript';
import { type MethodMeta } from './component';
export interface MethodMetaInfo {
    type: ts.Type;
}
export declare function buildMethodMeta(checker: ts.TypeChecker, name: string, declaration: ts.MethodSignature | ts.MethodDeclaration | ts.FunctionDeclaration, info: MethodMetaInfo): MethodMeta;
