import { n as SdkPaginated, t as ApiRequestOptions } from "./api-CHb_tF-8.mjs"; import { n as Template, t as InputTemplate } from "./types-9t2jqR24.mjs"; //#region src/modules/templates/methods.d.ts type PaginatedTemplates = SdkPaginated> & { meta: { default: string; }; }; /** * Get all available templates * * @returns All templates' info */ declare function getAllTemplates(opts?: ApiRequestOptions & { include?: string[]; }): Promise; /** * Get template info * * @param templateOrId Template or Template's id * * @returns Template info */ declare function getTemplate(templateOrId: Omit | string, include?: string[]): Promise