export interface IStatement { type: string; templateKey: string; defaults?: any; } export declare class EmptyStatement implements IStatement { type: string; templateKey: string; }