import { VariantProps } from 'class-variance-authority'; import { ButtonHTMLAttributes } from 'react'; declare const pillVariants: (props?: ({ checked?: boolean | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; interface PillProps extends Omit, "className" | "style">, VariantProps { /** * Whether the pill is checked * @default false */ checked?: boolean; /** * Whether the pill is rendered as a child component * @default false */ asChild?: boolean; } declare const Pill: import('react').ForwardRefExoticComponent>; export { Pill }; export type { PillProps };