import React from 'react'; import { InputProps } from './Input'; import { TextAreaProps } from './TextArea'; export declare type BeeTextAreaProps = TextAreaProps; export interface BeeInputProps extends InputProps { label: string; } declare const BeeInput: { (props: BeeInputProps): JSX.Element; BeeTextArea: React.ForwardRefExoticComponent>; }; export default BeeInput;