import { SvelteComponentTyped } from "svelte"; import type { SiteType } from '../types'; declare const __propDef: { props: { [x: string]: any; site: SiteType; aClass?: string | undefined; imgClass?: string | undefined; spanClass?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type SidebarBrandProps = typeof __propDef.props; export type SidebarBrandEvents = typeof __propDef.events; export type SidebarBrandSlots = typeof __propDef.slots; /** * [Go to docs](https://flowbite-svelte.com/) * ## Props * @prop export let site: SiteType; * @prop export let aClass: string = 'flex items-center pl-2.5 mb-5'; * @prop export let imgClass: string = 'h-6 mr-3 sm:h-7'; * @prop export let spanClass: string = 'self-center text-xl font-semibold whitespace-nowrap dark:text-white'; */ export default class SidebarBrand extends SvelteComponentTyped { } export {}; //# sourceMappingURL=SidebarBrand.svelte.d.ts.map