/** * Sanitises strings and objects to ensure no credential tokens appear * in tool responses, error messages, or debug output. * * Constitution §VI: "Salesforce access tokens…MUST NEVER appear in tool * response content, MCP logs, or error messages." */ export declare function sanitise(input: string): string; export declare function sanitiseObject(obj: unknown): unknown; //# sourceMappingURL=sanitiser.d.ts.map