export interface ProviderModelRef { provider: string; modelId: string; } /** Split a provider-qualified model reference while preserving slashes in the model ID. */ export declare function splitProviderModelRef(ref: string): ProviderModelRef | undefined;