import type { PromptTemplateGetResponse } from './prompt-template-get-response.js';
/**
 * Representation of the 'PromptTemplateListResponse' schema.
 */
export type PromptTemplateListResponse = {
    count: number;
    resources: PromptTemplateGetResponse[];
} & Record<string, any>;
//# sourceMappingURL=prompt-template-list-response.d.ts.map