import React from 'react'; declare type Props = { children: React.ReactNode; color?: string; }; declare const Pill: (props: Props) => JSX.Element; export default Pill;