import { IMottuAddress, IMottuStore, IMottuStoreMatrix, IMottuStoreResponsible } from '../interfaces';
export declare class MottuStoreEntity implements IMottuStore {
    address: IMottuAddress;
    balance: number;
    cnpj: string;
    email: string;
    id: number;
    marketplaceBranchId: number;
    matrix: IMottuStoreMatrix;
    name: string;
    responsible: IMottuStoreResponsible;
    constructor(data?: Partial<MottuStoreEntity>);
}
