import { ColumnDef } from '@tanstack/table-core';
type InvoiceAddress = {
    careOf?: string;
    city?: string;
    countryCode?: string;
    houseNumber?: number;
    name1?: string;
    name2?: string;
    nameSupplement?: string;
    poBox?: string;
    residenceDescription?: string;
    street?: string;
    zipCode?: string;
    isPoBoxAddress?: boolean;
    __typename: string;
};
type BillAccount = {
    billAccountId?: string;
    companyIndex?: string;
    scn?: string;
    scnCma?: string;
    scnCsa?: string;
    __typename: string;
};
export type Invoice = {
    index: number;
    amount: number;
    currency: string;
    amountUnpaid: number;
    createDate: Date;
    dueDate: Date;
    invoiceNumber: string;
    paymentStatus: string;
    periodFrom: Date;
    periodTo: Date;
    stack: string;
    __typename: string;
    billAccount: BillAccount;
    invoiceAddress: InvoiceAddress;
    subRows?: Invoice[];
    canExpand?: boolean;
};
export declare const defaultData: Invoice[];
export declare const COLUMNS: ColumnDef<Invoice>[];
export declare const HEADER_GROUP_COLUMNS: ColumnDef<Invoice>[];
export declare const COLUMNS_EXPAND: ColumnDef<Invoice>[];
export declare const manualDataSubRowsExpand: Invoice[];
export {};
