import { JSONSchemaType } from "@golemio/core/dist/shared/ajv"; import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { IPpasCommercialInvoice } from "./interfaces/IPpasCommercialInvoice"; export declare class PpasCommercialInvoiceModel extends Model implements IPpasCommercialInvoice { static TABLE_NAME: string; id: string; preceding_id: string; customer_id: string; customer_company_id: string; customer_name: string; customer_contract_account_id: string; customer_address_street: string; customer_address_house_number: string; customer_address_house_org_number: string; customer_address_city: string; customer_address_city_part: string; customer_address_post_code: string; customer_address_country: string; customer_address_ruian_id: number | null; facts_doc_date: string; facts_net_date: string; facts_billing_transaction: string; facts_to_pay_amount: number; facts_currency: string; facts_price_brutto: number; is_canceled: boolean; canceled_reason: string; static attributeModel: ModelAttributes; static jsonSchema: JSONSchemaType; }