import React, { ChangeEvent } from "react"; import { Size } from "../../types"; export type FileInputSize = Size; type Props = { onChange: (e: ChangeEvent) => void; children: React.ReactNode; accept?: string; multiple?: boolean; disabled?: boolean; inputRef?: React.RefObject; inverted?: boolean; noShadow?: boolean; noBorder?: boolean; noPadding?: boolean; transparent?: boolean; stretchHorizontally?: boolean; stretchVertically?: boolean; rounded?: boolean; size?: FileInputSize; }; declare function FileInput({ children, accept, onChange, inputRef, multiple, disabled, inverted, noShadow, noBorder, noPadding, transparent, stretchHorizontally, stretchVertically, rounded, size, }: Props): JSX.Element; export default FileInput;