import { CSSProperties, ReactNode } from 'react'; export type LayeredNavigationItem = { color?: string; content?: ReactNode; subtitle?: ReactNode; title: ReactNode; value: string; }; export type LayeredNavigationProps = { ariaLabel?: string; className?: string; closeLabel?: string; defaultOpen?: boolean; defaultValue?: string; items?: LayeredNavigationItem[]; onOpenChange?: (open: boolean) => void; onValueChange?: (value: string, item: LayeredNavigationItem) => void; open?: boolean; openLabel?: string; style?: CSSProperties; value?: string; }; export declare const LayeredNavigation: ({ ariaLabel, className, closeLabel, defaultOpen, defaultValue, items, onOpenChange, onValueChange, open, openLabel, style, value, }: LayeredNavigationProps) => import("react/jsx-runtime").JSX.Element;