import * as React from 'react'; import { ClassValue } from 'classnames/types'; export declare const getFileWordEnding: (number: number) => string; export declare const stringToMaxLength: (str: string, maxLength?: number | undefined) => string; export declare const bindFunctionalRef: (component: V, ref: ((instance: T | null) => void) | React.RefObject | React.MutableRefObject | null, current: C) => void; export declare const getComputedTheme: (defaultTheme: D, theme: T) => D & T; export declare const bindClassRef: (instance: T, current: C | null | undefined) => void; export declare const getClassNames: (...classNames: ClassValue[]) => string | undefined; export declare const getDedupedClassNames: (...classNames: ClassValue[]) => string | undefined; export declare const fixJSON: (wrapperJSON: T) => Partial;