import { jsx } from '@emotion/react'; export declare const Pricify: (price?: number | undefined) => string; export declare const Cart: ({ isCart: isExpand, setCart: setExpand, cartObj, items, purchaseUser, organizationId, }: { isCart: boolean; setCart: (val: boolean) => void; cartObj?: any; items?: any; purchaseUser?: { name: string; } | undefined; organizationId?: any; }) => jsx.JSX.Element;