@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
21 lines (20 loc) • 837 B
TypeScript
import { TextAreaRef } from 'antd/es/input/TextArea';
import { ReactNode } from 'react';
import { type DraggablePanelProps } from "../../DraggablePanel";
import { type ChatInputAreaInnerProps } from './ChatInputAreaInner';
export interface ChatInputAreaProps extends Omit<ChatInputAreaInnerProps, 'classNames'> {
bottomAddons?: ReactNode;
classNames?: DraggablePanelProps['classNames'];
expand?: boolean;
heights?: {
headerHeight?: number;
inputHeight?: number;
maxHeight?: number;
minHeight?: number;
};
onSizeChange?: DraggablePanelProps['onSizeChange'];
setExpand?: (expand: boolean) => void;
topAddons?: ReactNode;
}
declare const _default: import("react").NamedExoticComponent<ChatInputAreaProps & import("react").RefAttributes<TextAreaRef>>;
export default _default;