/// <reference types="react" />
import { WithGuiTheme } from '../../assets/theme';
import { GuiTreeViewProps } from './GuiTreeView.type';
declare type WithStyled = GuiTreeViewProps & WithGuiTheme;
declare const styled: (component: React.FC<WithStyled>) => import("@emotion/styled").StyledComponent<GuiTreeViewProps & WithGuiTheme & {
    children?: import("react").ReactNode;
} & {
    theme?: import("@emotion/react").Theme;
}, {}, {}>;
export default styled;
