import { Expression, IfStatement, Statement } from 'typescript'; import { Builder } from './types'; export declare type IfStatementBuilderOptions = { expression: Builder; thenStatement: Builder; elseStatement?: Builder; }; export declare class IfStatementBuilder implements Builder { private options; constructor(options: IfStatementBuilderOptions); build(): IfStatement; copy(): IfStatementBuilder; } //# sourceMappingURL=IfStatementBuilder.d.ts.map