import { BaseNode } from '../base';
import { MetaTypeContext, SolidityParserVisitor } from '../../antlr4';
import { TypeName } from '../type';
export declare class MetaType extends BaseNode {
    type: "MetaType";
    typeName: TypeName;
    constructor(ctx: MetaTypeContext, visitor: SolidityParserVisitor<any>);
}
