1// @declaration: true 2// @filename: node_modules/react/index.d.ts 3declare namespace React { 4 export interface DetailedHTMLProps<T, U> {} 5 export interface HTMLAttributes<T> {} 6} 7export = React; 8export as namespace React; 9// @filename: node_modules/create-emotion-styled/types/react/index.d.ts 10/// <reference types="react" /> 11declare module 'react' { // augment 12 interface HTMLAttributes<T> { 13 css?: unknown; 14 } 15} 16export interface StyledOtherComponentList { 17 "div": React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> 18} 19export interface StyledOtherComponent<A, B, C> {} 20 21// @filename: node_modules/create-emotion-styled/index.d.ts 22export * from "./types/react"; 23 24// @filename: node_modules/react-emotion/index.d.ts 25import {StyledOtherComponent, StyledOtherComponentList} from "create-emotion-styled"; 26export default function styled(tag: string): (o: object) => StyledOtherComponent<{}, StyledOtherComponentList["div"], any>; 27 28// @filename: index.ts 29import styled from "react-emotion" 30 31const Form = styled('div')({ color: "red" }) 32 33export default Form 34