import type { Ref } from 'vue';
import type { Color, Description, Rounded, Size, State } from '../../../globals/types';
interface PropTypes {
    size: Ref<Size>;
    rounded: Ref<Rounded>;
    state: Ref<State>;
    description: Ref<Description>;
    color: Ref<Color>;
}
export declare function useCheckboxClasses(props: PropTypes): {
    inputClasses: import("vue").ComputedRef<(string | object | null)[]>;
    spanClasses: import("vue").ComputedRef<(string | object | null)[]>;
    iconClasses: import("vue").ComputedRef<(string | object | null)[]>;
};
export {};
