import React from "react"; import { FlexCenterProps } from "../FlexCenter"; export type ChipProps = { children: React.ReactNode; className?: string; variant?: "default" | "frosted"; } & FlexCenterProps; export declare const Chip: React.ForwardRefExoticComponent<{ children: React.ReactNode; className?: string; variant?: "default" | "frosted"; } & Omit, "height" | "width"> & import("../..").TextColorVariantProps & React.RefAttributes>; //# sourceMappingURL=Chip.d.ts.map