import type { BotConfig } from "./config.js"; export type DangerousNameMatchingConfig = { dangerouslyAllowNameMatching?: boolean; }; export type ProviderDangerousNameMatchingScope = { prefix: string; account: Record; dangerousNameMatchingEnabled: boolean; dangerousFlagPath: string; }; export declare function isDangerousNameMatchingEnabled(config: DangerousNameMatchingConfig | null | undefined): boolean; export declare function collectProviderDangerousNameMatchingScopes(cfg: BotConfig, provider: string): ProviderDangerousNameMatchingScope[];