import { NodeBlock } from "@tripetto/runner";
export interface IStatement {
    readonly imageURL?: string;
    readonly imageWidth?: string;
    readonly imageAboveText?: boolean;
}
export declare abstract class Statement extends NodeBlock<IStatement> {}
