// twin.d.ts import "twin.macro"; import styledImport, { CSSProp, css as cssImport } from "styled-components"; import {} from "styled-components/cssprop"; declare module "twin.macro" { // The styled and css imports const styled: typeof styledImport; const css: typeof cssImport; } declare module "react" { // The css prop interface HTMLAttributes extends DOMAttributes { css?: CSSProp; tw?: string; } // The inline svg css prop interface SVGProps extends SVGProps { css?: CSSProp; } //