import { ElementType, ComponentProps } from 'react'; declare type PolymorphicProps = { element?: E; }; export declare type PolymorphicComponentProps = P & PolymorphicProps & Omit, keyof PolymorphicProps>; export interface PolymorphicComponent { (props: PolymorphicComponentProps): JSX.Element; displayName: string; } export {}; //# sourceMappingURL=PolymorphicComponent.d.ts.map