import type { CustomProviderProfileSpec } from "./custom-provider-profile.js"; type CustomProfileSpecResolver = (provider: string) => CustomProviderProfileSpec | undefined; export declare function setCustomProfileSpecResolver(resolver: CustomProfileSpecResolver): void; export declare function customProfileSpecFor(provider: string): CustomProviderProfileSpec | undefined; export {};