import { ChangeEventHandler, FocusEventHandler } from "../utils/types.js";
import { ThemingProps } from "../theme/types.js";
import { SystemProps } from "../system/system.js";
//#region src/checkbox/checkboxGroup.types.d.ts
type CheckboxGroupProps = SystemProps & ThemingProps<'Checkbox'> & {
  /** Deprecated. Please use variant instead. @deprecated  */colorScheme?: 'blue' | 'prussian'; /** Passes the prop to each checkbox. */
  disabled?: boolean; /** Displays checkboxes in a row. */
  isRow?: boolean; /** Passes the prop to each checkbox. */
  name?: string; /** Passes the prop to each checkbox. */
  onBlur?: FocusEventHandler; /** Passes the prop to each checkbox. */
  onChange?: ChangeEventHandler; /** Passes the prop to each checkbox. */
  onFocus?: FocusEventHandler;
};
//#endregion
export { CheckboxGroupProps };

//# sourceMappingURL=checkboxGroup.types.d.ts.map