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#L2313)
 * ## 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<CommandPaletteProps, {}, "open">;
type CommandPalette = ReturnType<typeof CommandPalette>;
export default CommandPalette;
