/**
 * Escapes special characters in a LIKE pattern value.
 *
 * @param value - The raw string to escape.
 * @param dialect - The SQL dialect to target.
 *   - `'standard'` (default): escapes `%`, `_`, and `\` with a backslash.
 *   - `'mssql'`: escapes `%`, `_`, and `[` using bracket notation (`[$&]`).
 */
export declare function escapeLike(value: string, dialect?: 'standard' | 'mssql'): string;
//# sourceMappingURL=escape-like.d.ts.map