import { OrganizationEntity, UserEntity } from '../../'; import { AccountConfig, AccountSmtpConfig, ACCOUNT_TYPE, ACCOUNT_USAGE_TYPE, SECRET_SCHEMA } from '../account.entity'; import { AccountBaseDto } from './base.dto'; export declare class SubmitAccountDto extends AccountBaseDto { title: string; usageType: ACCOUNT_USAGE_TYPE; isEncrypted: boolean; type: ACCOUNT_TYPE; secretSchema?: SECRET_SCHEMA; secret?: string; services?: string; config?: AccountConfig | AccountSmtpConfig; } export declare class CreateAccountDto extends SubmitAccountDto { organization: OrganizationEntity; createdByUser?: UserEntity; }