import { Styles, TextAreaProps } from '@open-tender/ui'; import { ReactNode } from 'react'; declare const TextArea: ({ label, value, setValue, isRequired, style, children }: { label?: string; value: string; setValue: (value: string) => void; isRequired?: boolean; style?: Styles; children: (props: TextAreaProps) => ReactNode; }) => ReactNode; export default TextArea;