import type { ChipProps as GcxChipProps } from "@vertigis/react-ui/Chip"; import type { FC } from "react"; import type { Translate } from "../_support/translation"; /** * Properties for the `Chip` component. */ export type ChipProps = Omit, "classes">; declare const Chip: FC; export default Chip;