import { InvoiceProfile, InvoiceType, SortType } from '../common';
export interface OldInvoiceRequest {
    Page?: number;
    PageSize?: number;
    Search?: string;
    StartDate?: string;
    EndDate?: string;
    SortColumn?: string;
    SortType?: SortType;
    InvoiceProfile?: InvoiceProfile[];
    InvoiceType?: InvoiceType[];
    IsPrint?: boolean;
    IsSale?: boolean;
}
