import { TypeTemplateEnum } from './TypeTemplateEnum';
import { StatusSenderEnum } from './StatusSenderEnum';
/** Sms template for moderation (Needed to send in US country) */
export interface TemplateControl {
    /** Specify the kind of template */
    activity: TypeTemplateEnum;
    /** Message sent by the moderator */
    comment: string;
    /** Template creation datetime */
    datetime: string;
    /** Template description */
    description: string;
    /** Message pattern to be moderated. Use "#VALUE#" format for dynamic text area. */
    message: string;
    /** Name of the template */
    name: string;
    /** Template status */
    status: StatusSenderEnum;
}
//# sourceMappingURL=TemplateControl.d.ts.map