import { type VNode } from 'vue';
export interface CChipSetItem {
    /**
     * The value that identifies the chip and tracks its selection.
     */
    value: string;
    /**
     * The chip content. Falls back to `value` when omitted.
     */
    label?: string | object;
    [key: string]: unknown;
}
export declare const chipsFromData: (items?: (string | CChipSetItem)[]) => VNode[];
