import BaseSDK from '../base-sdk'; import { QelosSDKOptions } from '../types'; import { IBlueprint } from '@qelos/global-types'; type IBlueprintUpdateParams = Omit; export default class QlManageBlueprints extends BaseSDK { private relativePath; constructor(options: QelosSDKOptions); getBlueprint(key: string): Promise; getList(): Promise; remove(key: string): Promise; update(key: string, changes: Partial): Promise; create(blueprint: IBlueprintUpdateParams): Promise; } export {};