import { BoxProps } from '@dodoex/components'; type PartnerRewardType = 'holdlp' | 'stakelp'; export type LiquidityLpPartnerRewardItem = { partner: { name: string; logo: string; introduction: string; link: string; background?: string; color?: string; extra: any; }; reward: string; type: PartnerRewardType; sort: number; }; export default function LiquidityLpPartnerReward({ address, chainId, hideName, sx, }: { address: string | Array | undefined; chainId: number | undefined; hideName?: boolean; sx?: BoxProps['sx']; }): import("react").JSX.Element | null; export {};