import React from 'react';
/** Type for an extended component. Can fetch the original component using `.Original` */
export type XComponentType
> = React.ForwardRefExoticComponent & React.RefAttributes> & {
Original: React.ComponentType>;
isXComponent: boolean;
};
export declare const XComponentMapContext: React.Context