import { ComponentPropsWithRef, MouseEvent } from 'react'; import { GetChipProps } from '../shared/types'; type HTMLButtonProps = ComponentPropsWithRef<'button'>; export type ChipToggleProps = HTMLButtonProps & GetChipProps & { onClick: (event: MouseEvent) => void; pressed: boolean; }; /** ChipToggle is a controlled component: You must provide an `onClick` handler to update the `pressed` value. */ export declare function ChipToggle({ pressed, ...props }: ChipToggleProps): import("react/jsx-runtime").JSX.Element; export default ChipToggle;