import { FC } from 'react'; import { NetworkId } from './global/configs'; export type BusinessData = { businessId: string; jwt?: string; }; export type GroupData = { name: string; description?: string; assetListingUrl: string; assetId: string; assetAddress: string; assetImageUrl: string; totalPrice: string; businessFee: string; }; export type Theme = { darkMode?: boolean; accent?: 'orange' | 'purple'; }; export type AnticT = { isOpen: boolean; onToggle: (isOpen: boolean) => void; businessData: BusinessData; groupData?: GroupData; groupId?: string; networkId: NetworkId; testMode?: boolean; theme?: Theme; }; declare const Antic: FC; export default Antic;