import React from 'react'; type WithStatesProps = { className?: string; states?: any; }; export declare const withStates: >(Component: T) => React.ForwardRefExoticComponent> & WithStatesProps & React.RefAttributes>; export {};