import { type UnwrapRef, type WritableComputedRef } from 'vue'; import { type Keyable } from '@myparcel-pdk/common'; type Value = Partial>; export type PdkBulkSelectCheckboxEmits = (event: 'select', value: Record) => void; export declare const useBulkSelectCheckbox: (options: KS, emit: PdkBulkSelectCheckboxEmits) => { bulkModel: WritableComputedRef>>; bulkOptions: Keyable[]; }; export {};