import * as React from 'react'; import { PropsOf } from 'src/types'; export declare type CollectionShorthandTestOptions = { mapsValueToProp: keyof (TProps & React.HTMLProps) | false; }; export declare const DefaultCollectionShorthandTestOptions: CollectionShorthandTestOptions; export declare type CollectionShorthandPropTestsRunner = (shorthandProp: keyof PropsOf, ShorthandComponent: TShorthandComponent, options?: CollectionShorthandTestOptions>) => any; export declare type CollectionShorthandPropTestsFactory = (Component: TComponent) => CollectionShorthandPropTestsRunner; export declare const implementsCollectionShorthandProp: CollectionShorthandPropTestsFactory;