import { Component } from 'react'; interface InputDrawerSetterProps { value: string; defaultValue: string; onChange: (val: string) => void; placeholder: string; } export default class extends Component { constructor(props: any); componentDidMount(): void; onOpen: () => void; onClose: () => void; render(): JSX.Element; } export {};