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<TextAreaProps & React.RefAttributes<import("./TextArea").TextAreaRef>>;
};
export default BeeInput;
