import { FC } from 'react'; import { TBaseInputProps, TBaseProps } from '../types'; declare type Props = TBaseProps & TBaseInputProps & { enabledFieldId: string; inline: boolean; labelFieldId: string; options: any[]; valueFieldId: string; visible?: boolean; }; export declare const CheckboxGroup: FC; export {};