/** * @author Ivan Torres */ import { ForwardRefExoticComponent, PropsWithoutRef, RefAttributes } from 'react'; import * as React from 'react'; import { Styles } from '../types'; declare type Tag = keyof JSX.IntrinsicElements | React.ComponentType>; declare type StyledFunc = (ComponentOrTag: Tag, ...args: Styles[]) => StyledComponent; export declare type StyledComponent = ForwardRefExoticComponent & RefAttributes>; declare const styled: StyledFunc; export default styled;