import type { CSSProperties, ReactElement } from 'react'; type PinnedItemsProps = { /** * This prop is used to control if the item is expanded or collapsed */ toggle?: boolean; /** * This function will be triggered on click of the item. If the item is expandable * toggle will be passed with it. */ onToggle?: (toggle: boolean) => void; /** * This function will be called when the user reorder the pinned items */ onReorder?: (pinnedItems: string[]) => void; /** * Use this prop if it is needed to wrap each PinnedItem component into another component (eg NavLink) */ itemWrapper?: (item: ReactElement, itemId: string) => ReactElement; style?: CSSProperties; }; export declare function PinnedItems({ toggle, onReorder, onToggle, itemWrapper, style }: PinnedItemsProps): import("react").JSX.Element | null; export declare namespace PinnedItems { var displayName: string; } export {}; //# sourceMappingURL=PinnedItems.d.ts.map