/** * This is the components made by Ed, a former designer for the app (web version) */ import { ChangeEvent } from 'react'; interface OwnProps { value: string | number | undefined; id?: string; readOnly?: boolean; onChange: (e: ChangeEvent) => void; rows?: number; fill?: boolean; } declare function MGDTextarea(props: OwnProps): JSX.Element; export default MGDTextarea; //# sourceMappingURL=MGDTextarea.d.ts.map