export declare type ModelId = {
    publisher: string;
    name: string;
};
export declare const ModelId: {
    parse(id: string): {
        publisher: string;
        name: string;
    };
    serialize({ publisher, name }: ModelId): string;
};
//# sourceMappingURL=model-id.d.ts.map