import { DefaultTheme, StyledComponent } from 'styled-components'; import '../controlskin'; declare module '@devseed-ui/form' { // The property `size` in formSkinStylesProps clashes with the size property // of input fields. To overcome this problem we create a faux input without // the size property. // TODO: Fix size override. type InputComponent = React.FC> /** * Renders a styled * @param {formInputProps} props Props for the form input */ export const FormInput: StyledComponent }