export interface ChatInputProps { placeholder?: string; tokenLimitBlocked?: boolean; } export interface ArrowKeyDownPayload { key: 'ArrowUp' | 'ArrowDown'; currentInputValue: string; } declare function __VLS_template(): { attrs: Partial<{}>; slots: { leftPanel?(_: {}): any; }; refs: { chatTextArea: HTMLTextAreaElement; }; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent any; }, string, import('vue').PublicProps, Readonly & Readonly<{ onArrowKeyDown?: ((value: ArrowKeyDownPayload) => any) | undefined; }>, { placeholder: string; tokenLimitBlocked: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { chatTextArea: HTMLTextAreaElement; }, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };