import { ForwardRefExoticComponent, PropsWithoutRef } from "react"; import { StyledElement } from "./StyledElement"; export default function defaultStyled(tag: string, css: string): typeof StyledElement & (new (...args: any[]) => StyledElement); export declare function styled = Record>(Tag: string, css: string): ForwardRefExoticComponent & React.RefAttributes>;