import type { Snippet } from 'svelte';
interface Props {
    children: Snippet;
    tooltip?: string;
    href?: string;
    aClass?: string;
}
/**
 * [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/)
 * ## Props
 * @props: children: any;
 * @props:tooltip: any;
 * @props:href: any;
 * @props:aClass: any;
 */
declare const SidebarBottomNavItem: import("svelte").Component<Props, {}, "">;
type SidebarBottomNavItem = ReturnType<typeof SidebarBottomNavItem>;
export default SidebarBottomNavItem;
