import { OverrideProps } from "@hope-ui/utils"; import { Component } from "solid-js"; import { As, HopeProps, PolymorphicComponent, PolymorphicProps } from "./types"; /** A component with Hope UI props. */ export declare type HopeComponent = PolymorphicComponent>; /** Create a polymorphic Hope UI component with the `as` and `system style` props support. */ export declare function createHopeComponent(component: Component>>): HopeComponent & Composite;