UNPKG

@gsretail.com/gui-core

Version:

A skeleton to create your own React component library using Rollup, TypeScript, Sass and Storybook

17 lines (16 loc) 564 B
import React from 'react'; import { WithGuiTheme } from '../../assets/theme'; import { GuiAutoCompleteProps } from './GuiAutoComplete.type'; declare type WithStyled = GuiAutoCompleteProps<{ value: string; label: string; }> & WithGuiTheme; declare const styled: (component: React.FC<WithStyled>) => import("@emotion/styled").StyledComponent<GuiAutoCompleteProps<{ value: string; label: string; }> & WithGuiTheme & { children?: React.ReactNode; } & { theme?: import("@emotion/react").Theme; }, {}, {}>; export default styled;