import type { CommandPaletteProps } from "../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [CommandPaletteProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2319) * ## Props * @prop open = $bindable(false) * @prop items = [] * @prop placeholder = "Type a command or search keywords ..." * @prop emptyMessage = "No results found." * @prop shortcutKey = "k" * @prop vim = false * @prop "aria-labelledby": ariaLabelledby * @prop class: className * @prop classes * @prop ...restProps */ declare const CommandPalette: import("svelte").Component; type CommandPalette = ReturnType; export default CommandPalette;