import type { ComponentProps, ComponentRef, ComponentType, ForwardRefExoticComponent, PropsWithoutRef, RefAttributes } from "react"; interface InjectedStyledProps { styles: Styles; } export type InferInjectedStyledProps any> = InjectedStyledProps>; export declare const withStyles: (useStyles: () => Styles) => >(Component: TComponent) => ForwardRefExoticComponent, "styles">> & RefAttributes>>; export {};