import type { EditorCustomHandlers } from '@nuxt/ui'; import type { MaybeRefOrGetter } from 'vue'; export declare function useEditorSuggestions(_customHandlers?: MaybeRefOrGetter): { items: (({ type: "label"; label: string; kind?: undefined; icon?: undefined; level?: undefined; } | { kind: "paragraph"; label: string; icon: any; type?: undefined; level?: undefined; } | { kind: "heading"; level: 2; label: string; icon: any; type?: undefined; } | { kind: "heading"; level: 3; label: string; icon: any; type?: undefined; } | { kind: "bulletList"; label: string; icon: any; type?: undefined; level?: undefined; } | { kind: "orderedList"; label: string; icon: any; type?: undefined; level?: undefined; } | { kind: "blockquote"; label: string; icon: any; type?: undefined; level?: undefined; } | { kind: "codeBlock"; label: string; icon: any; type?: undefined; level?: undefined; } | { kind: "note"; label: string; icon: any; type?: undefined; level?: undefined; } | { kind: "tip"; label: string; icon: any; type?: undefined; level?: undefined; } | { kind: "warning"; label: string; icon: any; type?: undefined; level?: undefined; } | { kind: "caution"; label: string; icon: any; type?: undefined; level?: undefined; })[] | ({ type: "label"; label: string; kind?: undefined; icon?: undefined; } | { kind: "horizontalRule"; label: string; icon: any; type?: undefined; } | { kind: "uplora-image"; label: string; icon: any; type?: undefined; } | { kind: "uplora-image-gallery"; label: string; icon: any; type?: undefined; })[])[]; };