import { Bounds } from "quill-next"; export interface IQuillInputOptions { trigger: string; } export interface IUseQuillInputResult { startPos: number; length: number; bounds: Bounds; content: string; } export declare function useQuillInput(options: IQuillInputOptions): [IUseQuillInputResult, () => void] | null;