import * as React from 'react'; export declare function createComponent(Component: React.FunctionComponent, config?: { attach?: { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: Array; themeKey?: string; }) => any; }; defaultProps?: Partial; themeKey?: string; shouldMemo?: boolean; }): React.ForwardRefExoticComponent & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: Array; themeKey?: string; }) => any; };