export type ProductListItemStatusVariant = "draft" | "active" | "archived" | "unlisted" | "none"; export type ProductListItemStatusProps = { /** * Status variant — drives the dot color. `none` renders only the (tertiary) * label and no dot, for products that don't (yet) have a platform status. */ status: ProductListItemStatusVariant; /** Translated status label, e.g. "Draft" or "Not yet on Shopify". */ label: React.ReactNode; }; export declare const ProductListItemStatus: ({ status, label }: ProductListItemStatusProps) => import("react").JSX.Element; //# sourceMappingURL=ProductListItemStatus.d.ts.map