export declare const INVOICE_TYPE: {
    readonly SATIS: "SATIS";
    readonly ALIS: "ALIS";
    readonly ISTISNA: "ISTISNA";
};
export type InvoiceType = (typeof INVOICE_TYPE)[keyof typeof INVOICE_TYPE];
