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