/** Converts a single string in the form of `owner/model` to an object with `owner` and `model` properties.
*
* @param ownerModel A string like `stability-ai/stable-diffusion`
*/exportdeclareconstextractModelAndOwner: (ownerModel: string) => {
owner: string;
model: string;
};