interface ActTemplate {
    label: string;
    id: string;
    category: string;
    description: string;
    template: string;
}
declare const actTemplates: ActTemplate[];

export { type ActTemplate, actTemplates };
