export type CheckboxSize = "s" | "m" | "l"; export type CheckboxGroupOrientation = "horizontal" | "vertical"; export interface EdsCheckboxChangeEventDetail { checked: boolean; value: string; } export interface EdsCheckboxInputEventDetail { checked: boolean; value: string; } export interface EdsCheckboxBlurEventDetail { checked: boolean; value: string; } export interface EdsCheckboxFocusEventDetail { checked: boolean; value: string; } export interface EdsCheckboxGroupChangeEventDetail { value: string[]; } export interface EdsCheckboxGroupInputEventDetail { value: string[]; } //# sourceMappingURL=checkbox.types.d.ts.map