import { ResourceBase } from '../resource'; import { Value, List } from '../dataTypes'; export declare class Tags { Value?: Value; Key?: Value; constructor(properties: Tags); } export declare class MailFromAttributes { MailFromDomain?: Value; BehaviorOnMxFailure?: Value; constructor(properties: MailFromAttributes); } export interface IdentityProperties { FeedbackForwardingEnabled?: Value; DkimSigningEnabled?: Value; Tags?: List; Name: Value; MailFromAttributes?: MailFromAttributes; } export default class Identity extends ResourceBase { static Tags: typeof Tags; static MailFromAttributes: typeof MailFromAttributes; constructor(properties: IdentityProperties); }