import { JSX } from 'solid-js/jsx-runtime'; import type { Shortcuts } from '@/schemas/features/blocks/inputs/text'; type AutoResizingTextareaProps = { ref: HTMLTextAreaElement | undefined; onInput: (e: Event) => void; shortcuts?: Shortcuts; onSubmit?: () => void; onNewline?: () => void; } & Omit, 'onInput'>; export declare const AutoResizingTextarea: (props: AutoResizingTextareaProps) => JSX.Element; export {}; //# sourceMappingURL=AutoResizingTextarea.d.ts.map