@gsretail.com/gui-core
Version:
A skeleton to create your own React component library using Rollup, TypeScript, Sass and Storybook
11 lines (10 loc) • 471 B
TypeScript
/// <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;