import { ICheckboxRenderlessParams, ICheckboxState, ICheckboxChangeEvent, ICheckboxProps } from '../checkbox'; export declare const addToStore: ({ state, props }: Pick) => () => void; export declare const removeFromStore: ({ state, props }: Pick) => () => void; export declare const handleChange: ({ state, props, emit, nextTick, dispatch, constants }: Pick) => (event: ICheckboxChangeEvent) => void; export declare const computedGetModelGet: ({ state, props }: Pick) => () => ICheckboxState['model']; export declare const computedGetModelSet: ({ state, dispatch, emit, constants }: Pick) => (value: ICheckboxState['model']) => void; export declare const computedIsChecked: ({ state, props }: Pick) => () => boolean; export declare const computedIsGroup: ({ state, vm, constants }: Pick) => () => boolean; export declare const computedStore: ({ state, props }: Pick) => () => ICheckboxState['store']; export declare const computedIsLimitDisabled: (state: any) => () => any; export declare const computedIsDisabled: ({ state, props }: Pick) => () => boolean; export declare const computedFormItemSize: (props: any) => () => string; export declare const computedCheckboxSize: ({ state, props, formItemSize }: Pick) => () => any; export declare const mounted: ({ props, emit, api, parent }: Pick) => () => void; export declare const toggleEvent: ({ parent, props, type }: Pick) => void; export declare const computedIsDisplayOnly: ({ state, props }: Pick) => () => boolean; export declare const computedIsGroupDisplayOnly: ({ state }: Pick) => () => boolean; export declare const computedDisplayLabel: ({ state, props, t }: Pick) => () => string; export declare const computedIsShowText: ({ props }: Pick) => () => boolean; export declare const computedShowText: ({ props }: Pick) => () => ICheckboxProps['label'] | ICheckboxProps['text']; export declare const handleLabelMouseenter: ({ state, vm }: Pick) => (e: any) => void; export declare const handleMouseleave: (state: any) => () => void;