export interface IEspoCRMResponse<T = any> {
    total: number;
    list: T[];
}
export interface IEspoCRMError {
    statusCode: number;
    message: string;
    body: any;
}
export interface IEspoCRMCredentials {
    url: string;
    apiKey: string;
}
export interface IBaseEntity {
    id?: string;
    createdAt?: string;
    modifiedAt?: string;
    createdBy?: string;
    modifiedBy?: string;
}
