export default Pill; declare function Pill({ children, type, className, shouldTruncate }: { children: any; type: any; className: any; shouldTruncate: any; }): import("react/jsx-runtime").JSX.Element; declare namespace Pill { namespace propTypes { const children: PropTypes.Validator; const type: PropTypes.Requireable; const className: PropTypes.Requireable; const shouldTruncate: PropTypes.Requireable; } namespace defaultProps { const type_1: string; export { type_1 as type }; const className_1: string; export { className_1 as className }; const shouldTruncate_1: boolean; export { shouldTruncate_1 as shouldTruncate }; } } import PropTypes from "prop-types";