interface UseStatusClasses { /** * Converts status information into classes which can be supplied to the rendered component's * `className` prop. * @param {string} [defaultClass] An optional default class that will be added * @param {{}} [statuses] A mapping of conditional statuses and the current value of each one * @returns {{classNames: string}} A string of classes based on the input. Status keys will be * converted to kebab-case. * e.g. useStatusClasses('thing', { isDisabled: true }) => "thing is-disabled" */ (defaultClass?: string | undefined | null, statuses?: Record): { classNames: string; }; } declare const useStatusClasses: UseStatusClasses; export default useStatusClasses;