import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; ulClass?: string | undefined; borderClass?: string | undefined; border?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type SidebarGroupProps = typeof __propDef.props; export type SidebarGroupEvents = typeof __propDef.events; export type SidebarGroupSlots = typeof __propDef.slots; /** * [Go to docs](https://flowbite-svelte.com/) * ## Props * @prop export let ulClass: string = 'space-y-2'; * @prop export let borderClass: string = 'pt-4 mt-4 border-t border-gray-200 dark:border-gray-700'; * @prop export let border: boolean = false; */ export default class SidebarGroup extends SvelteComponentTyped { } export {}; //# sourceMappingURL=SidebarGroup.svelte.d.ts.map