import type { PropType } from "vue"; export interface CheckboxGroupOption { label: string; value: string; disabled?: boolean; helperText?: string; } export type CheckboxGroupProps = { legend: string; /** Valeurs cochées (liste contrôlée). */ value?: string[]; onChange?: (value: string[]) => void; orientation?: "vertical" | "horizontal"; /** Nom partagé par les cases (utile pour la soumission de formulaire). */ name?: string; options?: CheckboxGroupOption[]; /** Description optionnelle affichée sous la légende. */ helperText?: string; /** Désactive le groupe entier. */ disabled?: boolean; class?: string; }; export declare const CheckboxGroup: import("vue").DefineComponent; default: () => never[]; }; onChange: { type: PropType<(value: string[]) => void>; default: undefined; }; orientation: { type: () => "vertical" | "horizontal"; default: string; }; name: { type: StringConstructor; default: undefined; }; options: { type: PropType; default: () => never[]; }; helperText: { type: StringConstructor; default: undefined; }; disabled: { type: BooleanConstructor; default: boolean; }; class: { type: StringConstructor; default: undefined; }; }>, () => import("vue").VNode, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").PublicProps, Readonly; default: () => never[]; }; onChange: { type: PropType<(value: string[]) => void>; default: undefined; }; orientation: { type: () => "vertical" | "horizontal"; default: string; }; name: { type: StringConstructor; default: undefined; }; options: { type: PropType; default: () => never[]; }; helperText: { type: StringConstructor; default: undefined; }; disabled: { type: BooleanConstructor; default: boolean; }; class: { type: StringConstructor; default: undefined; }; }>> & Readonly<{ onChange?: ((...args: any[]) => any) | undefined; }>, { class: string; name: string; onChange: (value: string[]) => void; disabled: boolean; orientation: "vertical" | "horizontal"; value: string[]; helperText: string; options: CheckboxGroupOption[]; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; //# sourceMappingURL=CheckboxGroup.d.ts.map