import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; divClass?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type SidebarWrapperProps = typeof __propDef.props; export type SidebarWrapperEvents = typeof __propDef.events; export type SidebarWrapperSlots = typeof __propDef.slots; /** * [Go to docs](https://flowbite-svelte.com/) * ## Props * @prop export let divClass: string = 'overflow-y-auto py-4 px-3 bg-gray-50 rounded dark:bg-gray-800'; */ export default class SidebarWrapper extends SvelteComponentTyped { } export {}; //# sourceMappingURL=SidebarWrapper.svelte.d.ts.map