import React from 'react'; type IPillType = 'active' | 'inactive' | 'pending' | 'default'; type IPillSize = 'small' | 'medium'; export interface IPillProps { label: string; type?: IPillType; size?: IPillSize; } export declare function Pill({ label, type, size, ...rest }: IPillProps): React.JSX.Element; export {}; //# sourceMappingURL=Pill.d.ts.map