import React from 'react'; import type { SwitchClickHandler } from '@splunk/react-ui/Switch'; interface CheckboxEditorType { onChange: SwitchClickHandler; label?: string; tooltipContent?: React.ReactNode; checked?: boolean; dataTest?: string; } export declare const CheckboxEditor: ({ onChange, label, checked, tooltipContent, dataTest, }: CheckboxEditorType) => React.JSX.Element; export {}; //# sourceMappingURL=CheckboxEditor.d.ts.map