import * as React from 'react'; import { CSSObject } from '@emotion/react'; import { Theme } from '../../Identity/Theme'; export interface PillProps extends React.HTMLProps { active?: boolean; type?: PILL_TYPE; } export declare enum PILL_TYPE { error = "ERROR", success = "SUCCESS", warning = "WARNING" } export declare const pillStyle: (theme: Theme, props: PillProps) => CSSObject; export declare const filterPillProps: (props: PillProps) => Object; export declare const Pill: (props: PillProps) => import("@emotion/react/jsx-runtime").JSX.Element; //# sourceMappingURL=Pill.d.ts.map