import { BaseNode } from '../base';
import { IfStatementContext, SolidityParserVisitor } from '../../antlr4';
import { Expression } from '../expression';
import { Statement } from './statement';
export declare class IfStatement extends BaseNode {
    type: "IfStatement";
    condition: Expression;
    ifStatement: Statement;
    elseStatement: Statement | null;
    constructor(ctx: IfStatementContext, visitor: SolidityParserVisitor<any>);
}
