import { type TextPropsBase } from '@splunk/react-ui/Text'; interface TextEditorProps extends Partial { value: string; onValueChange?: (val: string) => void; uniqKey?: unknown; 'data-test'?: string; defaultValue?: string; canClear?: boolean; id?: string; } declare const TextEditor: ({ value: initialValue, onValueChange, uniqKey, "data-test": dataTest, defaultValue, canClear, id, ...otherProps }: TextEditorProps) => JSX.Element; export default TextEditor; //# sourceMappingURL=TextEditor.d.ts.map