import { StyledComponentProps } from "./styled"; import React from "react"; import { StyledProps, StyledKeyType, PseudoProps } from "../system"; declare const htmlTags: Array>; type StyledComponent = React.FC, StyledKeyType> & StyledProps & Partial>; declare const z: { [K in (typeof htmlTags)[number]]: StyledComponent; }; export declare const isHTMLElement: (_tag: unknown) => _tag is keyof JSX.IntrinsicElements; export { z };