import React from 'react'; import { CheckboxGroupProps } from '@beisen-phoenix/checkbox-group'; declare type layout = 'vertical' | 'horizontal'; interface checkboxProps extends CheckboxGroupProps { optionsLayout?: layout; value?: string; isPreview?: boolean; } declare const FieldCheckbox: React.FunctionComponent; export default FieldCheckbox;