import type { StatementInput, Statement } from '../types.js'; type NormalStatement = Statement & { exec?: >() => Promise; }; export declare function normalizeStatement(statement: StatementInput): NormalStatement; export {};