/// import type { IFormikFormFieldProps } from './FormikFormField'; import type { ISpelError } from '../inputs'; import type { ICommonFormFieldProps } from './interface'; export interface IExpressionFieldProps { placeholder?: string; markdown?: boolean; context: object; layout?: ICommonFormFieldProps['layout']; } export type IFormikExpressionFieldProps = IExpressionFieldProps & IFormikFormFieldProps; export interface IFormikExpressionFieldState { spelPreview: string; spelError: ISpelError; } export declare function FormikExpressionField(props: IFormikExpressionFieldProps): JSX.Element;