export { createProviderErrorResponse as createProviderError } from './response-builders.js'; /** * Simplify boolean string preprocessing * Converts 'true'/'false' strings to actual booleans */ export declare function preprocessBoolean(val: unknown): unknown; /** * Create a file content XML element */ export declare function createFileElement(tagName: string, path: string, content?: string, attrs?: Record): string;