import { Entity } from './entity'; export declare class InfoPessoaCashback { _id: string; cpf_cnpj: string; } export declare class Cashback extends Entity { tipo: 'credito' | 'debito'; data: string; valor: number; nota: string; descricao: string; pessoa: InfoPessoaCashback; constructor(json?: any, generateId?: boolean); }