import type { FC, DetailedHTMLProps, HTMLAttributes } from 'react';
import type { IconName, PillPreset } from '../../components/pill/pharos-pill';
export interface PharosPillProps extends DetailedHTMLProps, HTMLElement> {
/**
* The size of the pill
*/
size?: 'base' | 'small';
/**
* Makes the pill dismissible with a close button
*/
dismissible?: boolean;
/**
* Makes the pill disabled, should only be used with dismissible pills
*/
disabled?: boolean;
/**
* The preset color style of the pill
*/
preset?: PillPreset;
/**
* The icon to be shown to the left of the pill content.
*/
iconLeft?: IconName | undefined;
}
export declare const PharosPill: FC;
//# sourceMappingURL=pharos-pill.d.ts.map