import { DateControlRenderer } from './InputDate'; export declare class CalendarRenderer extends DateControlRenderer { static defaultProps: { embed: boolean; placeholder: string; dateFormat: string; timeFormat: string; strictMode: boolean; viewMode?: import("./types").CalendarViewMode | undefined; valueFormat?: string; timeConstraints?: import("./types").TimeConstraints; disabled?: boolean | undefined; iconClassName?: string; id?: string; name?: string; env?: import("jamis-core").RendererEnv | undefined; $path?: string | undefined; $schema?: (import("jamis-core").Schema & { [key: string]: any; type: string; }) | undefined; $spec?: { $path?: string; id?: string; name?: string; debug?: boolean; } | undefined; store?: import("jamis-core").IIRendererStore; syncSuperStore?: boolean; data?: (import("jamis-core").RendererPropsData & { [key: string]: any; }) | undefined; defaultData?: Record; className?: import("jamis-core").SchemaClassName; rootStore?: import("jamis-core").IRendererStoreCopy | undefined; topStore?: import("jamis-core").IRootStoreCopy | undefined; appStore?: import("jamis-core").IAppStoreCopy; $$editor?: import("jamis-core").SimpleRendererInfo; onEvent?: import("jamis-core").OnEventProps; debug?: boolean; render?: import("jamis-core").SchemaRenderFn | undefined; scopeRef?: (scoped: import("jamis-core").IScopedContext) => void; dispatchEvent?: import("jamis-core").DispatchEventFn> | undefined; onAction?: import("jamis-core").OnActionFn; style?: import("react").CSSProperties; elementDataAttrs?: Record<`data-${string}`, any>; pickClassStyle?: import("jamis-core").PickClassStyleFn; onOpenDialog?: (((schema: import("jamis-core").Schema, data: any) => Promise) & ((schema: import("jamis-core").Schema, data: any) => Promise)) | undefined; formStore?: import("..").IFormStore; formItem?: import("..").IFormItemStore; formInited?: boolean | undefined; formMode?: "horizontal" | "inline" | "default" | "normal" | "row" | undefined; formHorizontal?: import("..").FormHorizontal | undefined; horizontal?: import("..").FormHorizontal; formLabelAlign?: import("..").LabelAlign | undefined; formLabelWidth?: number | string; defaultSize?: import("..").SizeUnit; size?: import("..").SizeUnit; labelAlign?: import("..").LabelAlign; labelWidth?: number | string; labelClassName?: string; btnDisabled?: boolean | undefined; defaultValue?: any; value?: any; prinstine?: any; formItemValue?: any; inputClassName?: import("jamis-core").SchemaClassName; inputStyle?: React.CSSProperties; inputOnly?: boolean; renderLabel?: boolean; renderDescription?: boolean; sizeMutable?: boolean; wrap?: boolean; hint?: string; description?: string; descriptionClassName?: import("jamis-core").SchemaClassName; errors?: { [propName: string]: string; }; error?: string; showErrorMsg?: boolean; requiredClassName?: import("jamis-core").SchemaClassName; valueClassName?: import("jamis-core").SchemaClassName; static?: boolean; setPrinstineValue?: ((value: any) => void) | undefined; onChange?: ((value: any, submitOnChange?: boolean, changeImmediately?: boolean) => void) | undefined; formItemDispatchEvent?: (type: string, data: any) => void; onBulkChange?: (values: { [propName: string]: any; }, submitOnChange?: boolean) => void; addHook?: ((fn: Function, mode: "validate" | "init" | "flush") => () => void) | undefined; removeHook?: ((fn: Function, mode?: "validate" | "init" | "flush") => void) | undefined; renderFormItems?: ((schema: Partial, region: string, props: any) => JSX.Element) | undefined; onFocus?: ((e: any) => void) | undefined; onBlur?: ((e: any) => void) | undefined; getValue?: (() => any) | undefined; setValue?: ((value: any, key: string) => void) | undefined; renderControl?: (props: import("..").FormControlProps) => JSX.Element; mode?: "normal" | "inline" | "horizontal"; slots?: Record | undefined>; key?: any; $ref?: string; shared?: Record>; definitions?: Record>; disabledOn?: import("jamis-core").SchemaBoolean; hidden?: boolean; hiddenOn?: import("jamis-core").SchemaBoolean; visible?: boolean; visibleOn?: import("jamis-core").SchemaBoolean; editorSetting?: { behavior?: string; displayName?: string; mock?: any; [propName: string]: any; }; pipeOut?: ((value: any, originValue: any, data: Record) => any) | import("jamis-core").SchemaExpression; remark?: import("..").SchemaRemark; labelRemark?: import("..").SchemaRemark; clearable?: boolean; sizeExpr?: import("jamis-core").SchemaExpression; submitOnChange?: boolean; readOnly?: boolean; readOnlyOn?: string; validateOnChange?: boolean; validatable?: boolean; validatableOn?: import("jamis-core").SchemaExpression; desc?: string; modeExpr?: import("jamis-core").SchemaExpression; inline?: boolean; controlBodyClassName?: import("jamis-core").SchemaClassName; placeholderExpr?: import("jamis-core").SchemaExpression; required?: boolean; requiredOn?: import("jamis-core").SchemaExpression; changeImmediately?: boolean; validationErrors?: { [k in keyof import("..").FormValidation]: string; }; validations?: string | import("..").FormValidation; valueExpr?: import("jamis-core").SchemaExpression; clearValueOnHidden?: boolean; validateApi?: import("jamis-core").Api; columnRatio?: import("jamis-core").GridSizeUnit; columnRatioExpr?: import("jamis-core").GridSizeUnit | import("jamis-core").SchemaExpression | Record; staticOn?: import("jamis-core").SchemaExpression; staticPlaceholder?: string; validate?: (values: any, value: any) => string | boolean; pipeIn?: ((value: any, data: Record) => any) | import("jamis-core").SchemaExpression; borderMode?: "full" | "half" | "none"; format?: string; inputFormat?: string; utc?: boolean; disableMonthSwitch?: boolean; maxDate?: import("jamis-core").SchemaExpression; minDate?: import("jamis-core").SchemaExpression; pickerInputClassName?: import("jamis-core").SchemaClassName; closeOnSelect?: boolean; shortcuts?: string | Array; shortcutsClassName?: import("jamis-core").SchemaClassName; shortcutsRefDate?: import("jamis-core").SchemaExpression; shortcutsPosition?: "picker" | "input"; }; }