import { ActTemplate } from './act.cjs'; declare const findActTemplate: (id: string) => Promise; declare const getAllTemplates: () => Promise; declare const listActTemplates: () => Promise; declare const listBuiltInTemplates: () => Promise; declare const listCustomTemplates: () => Promise; declare const showActTemplate: (id: string) => Promise; declare const applyActTemplate: (templateId: string, userInput: string) => Promise; export { applyActTemplate, findActTemplate, getAllTemplates, listActTemplates, listBuiltInTemplates, listCustomTemplates, showActTemplate };