import type { OpenClawConfig } from "../../config/config.js"; import type { AuthProfileStore } from "./types.js"; type OAuthSecretRefPolicyViolation = { profileId: string; path: string; reason: string; }; export declare function collectOAuthSecretRefPolicyViolations(params: { store: AuthProfileStore; cfg?: OpenClawConfig; profileIds?: Iterable; }): OAuthSecretRefPolicyViolation[]; export declare function assertNoOAuthSecretRefPolicyViolations(params: { store: AuthProfileStore; cfg?: OpenClawConfig; profileIds?: Iterable; context?: string; }): void; export {};