/// import type { ITextInputProps } from '../forms/inputs'; import './SpelInput.less'; export interface IStageForSpelPreview { executionLabel: string; executionId: string; stageId: string; } interface ISpelInputProps extends ITextInputProps { previewStage: IStageForSpelPreview; } /** An Input that previews Spel expressions */ export declare function SpelInput(props: ISpelInputProps): JSX.Element; /** An Input for entering SpEL without preview functionality */ export declare function SimpleSpelInput(props: ITextInputProps): JSX.Element; export {};