flowbite-svelte
Version:
Flowbite components for Svelte
10 lines (9 loc) • 333 B
TypeScript
import type { HTMLAttributes } from "svelte/elements";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Props
* @props: children: any;
*/
declare const SidebarWrapper: import("svelte").Component<HTMLAttributes<HTMLDivElement>, {}, "">;
type SidebarWrapper = ReturnType<typeof SidebarWrapper>;
export default SidebarWrapper;