import { ComponentProps, ComponentType, PropsWithoutRef } from 'react'; export interface TInjectingLabelsProps { label?: string; subLabel?: string; labelPosition?: 'top' | 'right'; } type TWrappedComponent = ComponentType, keyof InjectingProps>>; export declare const withLabel: >(WrappedComponent: TWrappedComponent) => import('react').ForwardRefExoticComponent & import('react').RefAttributes>; export {};