import React from "react"; import { IChipButtonProps } from "./types"; interface IProps extends React.ButtonHTMLAttributes, IChipButtonProps { } export declare const Chip: ({ children, isActive, ...otherProps }: IProps) => import("react/jsx-runtime").JSX.Element; export {};