17 lines
957 B
TypeScript
17 lines
957 B
TypeScript
import type { TextAreaProps } from 'antd/lib/input';
|
|
import type { TextAreaRef } from 'antd/lib/input/TextArea';
|
|
import React from 'react';
|
|
declare const _default: React.ForwardRefExoticComponent<{
|
|
fieldProps?: Partial<import("../../typing").FieldProps<TextAreaRef> & TextAreaProps> | undefined;
|
|
placeholder?: string | string[] | undefined;
|
|
secondary?: boolean | undefined;
|
|
emptyText?: React.ReactNode;
|
|
cacheForSwr?: boolean | undefined;
|
|
disabled?: boolean | undefined;
|
|
width?: number | "xl" | "lg" | "md" | "sm" | "xs" | undefined;
|
|
proFieldProps?: import("../../../../utils/src").ProFieldProps | undefined;
|
|
footerRender?: import("../../typing").LightFilterFooterRender | undefined;
|
|
children?: any;
|
|
} & Omit<import("src/components").ProFormItemProps, "valueType"> & Pick<import("../../typing").ProFormGridConfig, "colProps"> & import("../../typing").ExtendsProps & React.RefAttributes<any>>;
|
|
export default _default;
|