import React, { ReactNode } from "react"; export declare type CheckBoxItemType = { label: string | ReactNode; value: string; disabled?: boolean; checked?: boolean; }; export declare type CheckBoxItem = Omit | string; export declare type CheckboxGroupProps = { option: CheckBoxItem[]; onChange?: (value: string[]) => void; defaultChecked?: string[] | string; padding?: true; border?: boolean; style?: React.CSSProperties; checkboxStyle?: React.CSSProperties; align?: "center" | "end"; direction?: "rtl"; justify?: "around" | "between"; color?: string; size?: number; }; declare const CheckboxGroup: React.FC; export default CheckboxGroup;