/// <reference types="react" />
import { CheckboxComponentSchema } from '@open-formulieren/types';
import { ComponentPreviewProps } from '../types';
/**
 * Show a formio checkbox component preview.
 *
 * NOTE: for the time being, this is rendered in the default Formio bootstrap style,
 * however at some point this should use the components of
 * @open-formulieren/formio-renderer instead for a more accurate preview.
 */
declare const Preview: React.FC<ComponentPreviewProps<CheckboxComponentSchema>>;
export default Preview;
