UNPKG

hh-ui-components

Version:
8 lines (7 loc) 181 B
import { FC } from "react"; export interface CartBoxProps { boxTitle?: string; validPrice?: number; maxPrice?: number; } export declare const CartBox: FC<CartBoxProps>;