import type { TextareaHTMLAttributes } from "react";
import React from "react";
import type { Theme } from "@emotion/react";
import type { Property } from "csstype";
import type { FlattenedListItem } from "./CategoryList";
export declare const getPaddingHorizontal: (theme: Theme) => string;
export declare const getPaddingVertical: (theme: Theme) => string;
export type PromptTextAreaProps = TextareaHTMLAttributes & {
dataE2eTestId?: string;
label: string;
name: string;
value: string;
maxTextAreaHeight?: Property.Height;
selectedListItem?: FlattenedListItem;
isAutocompleteListOpen?: boolean;
isCollapsed?: boolean;
/** Collapsed variant showing only single row text area */
isNavBarVariant?: boolean;
hasLeftIcon?: boolean;
};
export declare const PromptTextArea: React.ForwardRefExoticComponent & {
dataE2eTestId?: string;
label: string;
name: string;
value: string;
maxTextAreaHeight?: Property.Height;
selectedListItem?: FlattenedListItem;
isAutocompleteListOpen?: boolean;
isCollapsed?: boolean;
/** Collapsed variant showing only single row text area */
isNavBarVariant?: boolean;
hasLeftIcon?: boolean;
} & React.RefAttributes>;