import { ElementRef, ElementType } from "react"; import { SlotProps, StyledComponentProps } from "../../shared"; export declare type HtmlElementProps = SlotProps & StyledComponentProps & { as?: ElementType; }; export declare function htmlElement(name: string, elementType: T): import("react").ForwardRefExoticComponent> & import("react").RefAttributes>>;