import { p as paths } from './openapi-spec-hjdK2L9Q.esm.js';

type TCartApi = paths["/chain/findEligibleNonprofitsForCart"]["post"]["requestBody"]["content"]["application/json"]["cart"];
type TCart = TCartApi & {
    content: {
        items: Record<string, any>[];
        discounts?: Record<string, any>[] | undefined | null;
    };
};

export type { TCart as T, TCartApi as a };
