import React from 'react';
import type { JSONPath } from './zod-types';
import type { UpdaterFunction } from './ZodSwitch';
export declare const ZodBooleanEditor: React.FC<{
    readonly jsonPath: JSONPath;
    readonly value: boolean;
    readonly setValue: UpdaterFunction<boolean>;
    readonly onRemove: null | (() => void);
    readonly mayPad: boolean;
}>;
