type Props = {
    customer_id?: string;
    subscription_id?: string;
    currency_id?: string;
    include_staking?: boolean;
    include_return_staking?: boolean;
    include_recovered_from?: boolean;
    status?: string;
    pageSize?: number;
    target?: string;
    action?: string;
    type?: 'list' | 'table';
    onTableDataChange?: Function;
    relatedSubscription?: boolean;
};
export default function CustomerInvoiceList(rawProps: Props): JSX.Element;
export {};
