import { ActionChipVariantProps } from '@seed-design/css/recipes/action-chip'; import { PrimitiveProps } from '@seed-design/react-primitive'; import type * as React from "react"; /** * @deprecated ActionChip is deprecated. Use Chip.Button with variant="solid" instead. * * Migration guide: * ```tsx * // Before * Label * * // After * import { Chip } from "@seed-design/react"; * Label * ``` */ export interface ActionChipProps extends ActionChipVariantProps, PrimitiveProps, React.ButtonHTMLAttributes { } /** * @deprecated ActionChip is deprecated. Use Chip.Button with variant="solid" instead. */ export declare const ActionChip: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; //# sourceMappingURL=ActionChip.d.ts.map