import { Column } from 'react-table';
import { ReactNode } from 'react';
export interface BillingOutputModel<T extends object> {
    columns: Column<T>[];
    data: Array<T>;
    responsiveChildren: (element: T) => ReactNode;
}
export interface BillingModel {
    date: string;
    price: string;
    status: 'paid' | 'not';
    urlDownload: string;
}
