import * as React from "react"; import { CheckboxProps } from "../Checkbox"; import { ViewProps } from "../View"; export interface CheckboxGroupProps extends ViewProps { id?: string; name: string; value?: string[]; disabled?: boolean; error?: boolean; options: CheckboxProps[]; } declare class CheckboxGroup extends React.Component { constructor(props: any); handleOnChange: (value: any) => (event: any) => void; render(): JSX.Element; } export default CheckboxGroup;