import { Ref, ModelRef } from 'vue';
export interface OnChangeParams {
    name: string | number;
    isChecked: Ref<boolean>;
}
/**
 * emits
 */
export interface Emits {
    (event: 'change', arr: (string | number)[]): void;
}
/**
 * props
 */
export interface Props {
    /**
     * 排列方向, vertical | horizontal
     */
    direction?: string;
}
/**
 * useInitSlots
 */
export declare namespace USEInitSlots {
    interface Option {
        emit: Emits;
        currentValue: ModelRef<(string | number)[]>;
    }
}
