import { ControlChipVariantProps } from '@seed-design/css/recipes/control-chip'; import { PrimitiveProps } from '@seed-design/react-primitive'; import type * as React from "react"; /** * @deprecated ControlChipBaseProps is deprecated. Use ChipBaseProps from Chip instead. */ export interface ControlChipBaseProps extends PrimitiveProps, ControlChipVariantProps { } /** * @deprecated ControlChipProps is deprecated. Use Chip.Toggle or Chip.Button instead. * * Migration guide: * ```tsx * // Before * Label * * // After * import { Chip } from "@seed-design/react"; * Label * ``` */ export interface ControlChipProps extends ControlChipBaseProps, React.HTMLAttributes { } /** * @deprecated ControlChip is deprecated. Use Chip.Toggle or Chip.Button instead. */ export declare const ControlChip: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; //# sourceMappingURL=ControlChip.d.ts.map