import type { FormItemRendererFC } from 'jamis-core'; import type { CheckboxControlSchema, FormControlProps } from '../types'; interface CheckboxProps extends FormControlProps, Omit { } export declare const CheckboxControlRenderer: FormItemRendererFC; export {};