import React from 'react'; type WithStyleContextProps = { context?: any; className?: string; states?: any; }; export declare const withStyleContextAndStates: >(Component: T, scope?: string) => React.ForwardRefExoticComponent> & WithStyleContextProps & React.RefAttributes>; export declare const useStyleContext: (scope?: string) => any; export {};