export type T_PaymentsQueryParams = {
    id?: string;
    page?: number;
    limit?: number;
    code?: string;
    companyId?: string;
};
export type T_PostCustomerLessPaymentQueryParams = {
    uniqueIdentifier: string;
    customerInfo: {
        name: string;
        phone: string | number;
        countryCode: string;
    };
};
//# sourceMappingURL=index.d.ts.map