import React from 'react'; import { AnchorWallet } from '@solana/wallet-adapter-react'; import { CandyShop } from '@liqnft/candy-shop-sdk'; import './index.less'; interface OrdersProps { walletConnectComponent: React.ReactElement; wallet: AnchorWallet | undefined; url?: string; identifiers?: number[]; filters?: Array<{ name: string; identifier: number | Array; }>; style?: { [key: string]: string | number; } | undefined; defaultFilterName?: string; candyShop: CandyShop; } /** * React component that displays a list of orders */ export declare const Orders: React.FC; export {}; //# sourceMappingURL=index.d.ts.map