interface ClassNames { [key: string]: string | object; } interface GetClassNamesParams { classNames?: ClassNames; defaultClassNames: ClassNames; requiredClassNames?: ClassNames | null; flatten?: boolean; } export declare const getClassNames: ({ classNames, defaultClassNames, requiredClassNames, flatten, }: GetClassNamesParams) => { [key: string]: any; }; export declare const getClassName: (key: string, classNames: { [key: string]: any; }) => string; declare const _default: { getClassNames: ({ classNames, defaultClassNames, requiredClassNames, flatten, }: GetClassNamesParams) => { [key: string]: any; }; getClassName: (key: string, classNames: { [key: string]: any; }) => string; }; export default _default;