import React from 'react'; interface CheckboxGroupProps { fields: any[]; getFieldValue: (property: string) => any; handleInputChange: (property: string, value: any) => void; editing: boolean; } declare const CheckboxGroup: ({ fields, getFieldValue, handleInputChange, editing }: CheckboxGroupProps) => React.JSX.Element; export default CheckboxGroup; //# sourceMappingURL=CheckboxGroup.d.ts.map