import { ChannelTypeEnum, EnvironmentId, IEmailBlock, ITemplateVariable, OrganizationId, LayoutDescription, LayoutId, LayoutName, LayoutIdentifier, UserId } from '../../types'; export declare class LayoutDto { _id?: LayoutId; _organizationId: OrganizationId; _environmentId: EnvironmentId; _creatorId: UserId; _parentId?: LayoutId; name: LayoutName; identifier: LayoutIdentifier; description?: LayoutDescription; channel: ChannelTypeEnum; content: IEmailBlock[]; contentType: string; variables?: ITemplateVariable[]; isDefault: boolean; isDeleted: boolean; createdAt?: string; updatedAt?: string; } //# sourceMappingURL=layout.dto.d.ts.map