import { IRadioRenderlessParams, IRadioState } from '../radio'; export declare const handleChange: ({ constants, dispatch, emit, state, nextTick }: Pick) => () => void; export declare const isGroup: ({ constants, parent: $parent, state }: Pick) => () => boolean; export declare const radioSize: ({ props, state }: Pick) => () => IRadioState['radioSize']; export declare const isDisabled: ({ props, state }: Pick) => () => boolean; export declare const isDisplayOnly: ({ props }: Pick) => () => boolean; export declare const tabIndex: ({ props, state }: Pick) => () => number; export declare const getModel: ({ props, state }: Pick) => () => IRadioState['model']; export declare const setModel: ({ constants, dispatch, emit, props, vm, state }: Pick) => (val: IRadioState['model']) => void; export declare const toggleEvent: ({ props, vm, type }: Pick) => void;