import { type ButtonVariantName } from './../fw-button/index.types'; export declare interface FwSidebarMenuItem { to?: string | object; href?: string; label: string; external?: boolean; disabled?: boolean; onClick?: () => void; modelValue?: boolean; } export declare interface FwSidebarMenuProps { modelValue: boolean; menuItems: FwSidebarMenuItem[]; toggleButtonClass?: string; openWidth?: string; closedWidth?: string; toggleButtonVariant?: ButtonVariantName; }