import classNamesUtil from '@helpscout/react-utils/dist/classNames'; /** * Tiny implementation of the classnames library. * * @param {any} classes * @returns {string} */ export declare const classNames: typeof classNamesUtil; /** * Generate className variations. * * @param {string} className * @param {string} variation * @returns {string} */ export declare const variantClassNames: (className: string, variant?: string) => string; /** * Used with classNames generated by a Fancy styled-component. * Fancy (Emotion) appends the hashed className at the very end. * This function plucks it out and returns it. * * @param {string} classNames * @returns {string} */ export declare const getHashedClassName: (classNames: string) => string; /** * Used with classNames generated by a Fancy styled-component, combined * with a BEM styled __element suffix. * * @param {string} classNames * @param {string} suffix * @returns {string} */ export declare const BEM: (classNames: string) => Object; export default classNames;