import { BlockProps } from "@mezo-org/mezo-clay"; import React, { ReactNode } from "react"; type ListingItemProps = { icon?: ReactNode; label?: string; subLabel?: string; value?: number | string; valueFormatter?: (value: number | string) => string; subValue?: number | string; subValueFormatter?: (value: number | string) => string; overrides?: BlockProps["overrides"]; isLoading?: boolean; }; export default function ListingItem(props: ListingItemProps): React.JSX.Element; export {}; //# sourceMappingURL=ListingItem.d.ts.map