export declare const TemplateType: {
    EMAIL: string;
    WEB: string;
    STEP: string;
};
export interface TemplateDescription {
    templateId: string;
    templateName: string;
}
export interface TemplateDetails {
    templateId?: string;
    templateName: string;
    templateDetails: string;
}
