import { ReactNode } from "react"; import * as S from "../styled-components"; export declare type TreeListItemTypes = { key?: string | number; icon?: any; activeIcon?: any; title?: string; items?: TreeListItemTypes; isActive?: boolean; showItems?: boolean; path?: string; page?: () => ReactNode; }[]; interface TreeListType extends S.IMainCssType { items: TreeListItemTypes; width?: string | number; height?: string | number; } export declare const TreeList: ({ items, width, height, className, css }: TreeListType) => JSX.Element; export {};