export declare enum TaxConfigStatus { PENDING = "pending", ACTIVE = "active", SUSPENDED = "suspended" } export declare class TaxConfig { id: string; tenantId: string; rfc: string; razonSocial: string; regimenFiscal: string; codigoPostal: string; csdCertificate: string; csdPrivateKeyEncrypted: string; csdPasswordEncrypted: string; csdValidFrom: Date; csdValidTo: Date; pacProvider: string; pacApiKeyEncrypted: string; pacSandbox: boolean; serie: string; folioActual: number; autoSendEmail: boolean; logoUrl: string; status: TaxConfigStatus; createdAt: Date; updatedAt: Date; }