import { type BottomNavItemProps } from "..";
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Type
 * [BottomNavItemProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L266)
 * ## Props
 * @prop children
 * @prop btnName
 * @prop appBtnPosition = "middle"
 * @prop target
 * @prop activeClass
 * @prop href = ""
 * @prop btnClass
 * @prop spanClass
 * @prop active: manualActive
 * @prop ...restProps
 */
declare const BottomNavItem: import("svelte").Component<BottomNavItemProps, {}, "">;
type BottomNavItem = ReturnType<typeof BottomNavItem>;
export default BottomNavItem;
