import * as React from 'react'; import { Props, ShorthandValue } from 'src/types'; export interface ImplementsWrapperPropOptions { wrapppedComponentSelector: any; WrapperComponent?: any; } declare type WrapperProps = { wrapper?: ShorthandValue; }; export declare const implementsWrapperProp: (Component: React.ComponentType, options: ImplementsWrapperPropOptions) => void; export {};