import type { MenuProps } from "../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [MenuProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1177) * ## Props * @prop size = "24" * @prop color = "currentColor" * @prop variation = "outline" * @prop ariaLabel = "bars 3" * @prop class: className * @prop ...restProps */ declare const Menu: import("svelte").Component; type Menu = ReturnType; export default Menu;