import React from 'react'; import { BaseInputProps } from './Input'; import { Omit } from '../_util/type'; export interface InputLabelProps extends Omit { label?: string[]; onPressEnter?: (e: any) => void; onLabelChange?: (value: any) => void; } declare const Label: React.FC; export default Label;