diff --git a/components/input/Input.d.ts b/components/input/Input.d.ts index b257fa1a..571889df 100644 --- a/components/input/Input.d.ts +++ b/components/input/Input.d.ts @@ -136,6 +136,16 @@ export interface InputProps extends ReactToolbox.Props { value?: any; } -export class Input extends React.Component { } +export class Input extends React.Component { + /** + * Used to focus the input element. + */ + public focus(): void; + + /** + * Used to blur the input element. + */ + public blur(): void; +} export default Input;