import type { Template } from '../models/Template'; import type { TemplateMinimized } from '../models/TemplateMinimized'; import type { CancelablePromise } from '../core/CancelablePromise'; export declare class TemplateService { /** * Get all available templates * You first want to get all templates to correctly select the one that you are going to use to create your contract. * @returns any All templates listed * @throws ApiError */ static list(): CancelablePromise<{ templates: Array; }>; /** * Get a specific template * @returns any Retrieves a specific template. * @throws ApiError */ static retrieve({ id, }: { /** * ID of template */ id: string; }): CancelablePromise<{ template: Template; }>; } //# sourceMappingURL=TemplateService.d.ts.map