import type { ComponentInternalInstance } from 'vue'; import type { CheckboxProps } from '../checkbox'; import type { CheckboxModel } from '../composables'; export declare const useCheckboxStatus: (props: CheckboxProps, slots: ComponentInternalInstance['slots'], { model }: Pick) => { checkboxButtonSize: import("vue").ComputedRef<"" | "default" | "xxsmall" | "xsmall" | "small" | "large" | "xlarge">; isChecked: import("vue").ComputedRef; isFocused: import("vue").Ref; checkboxSize: import("vue").ComputedRef<"" | "default" | "xxsmall" | "xsmall" | "small" | "large" | "xlarge">; hasOwnLabel: import("vue").ComputedRef; large: import("vue").Ref | undefined; small: import("vue").Ref | undefined; vertical: import("vue").Ref | undefined; }; export declare type CheckboxStatus = ReturnType;