/** * Split a SQL script into its top-level statements on `;` boundaries, ignoring * separators that fall inside string literals, quoted identifiers, comments, or * dollar-quoted blocks. The single source of truth for statement splitting — * used both when applying migration files ({@link ../apply/apply.ts}) and when * post-processing emitted DDL for the D1 target ({@link ../emit/d1-safety-pass.ts}). * * Returned statements are trimmed and DO NOT include the trailing `;` * separator; callers that need a terminator re-add one. */ export declare function splitSqlStatements(text: string): string[]; //# sourceMappingURL=split-statements.d.ts.map