@ant-design/pro-flow
Version:
A React based Flow components
14 lines (13 loc) • 600 B
TypeScript
/// <reference types="react" />
import { InputProps as AntdInputProps, InputRef } from 'antd';
import { TextAreaProps as AntdTextAreaProps } from 'antd/es/input/TextArea';
export interface InputProps extends AntdInputProps {
ref?: any;
type?: 'ghost' | 'block';
}
export declare const Input: import("react").ForwardRefExoticComponent<Omit<InputProps, "ref"> & import("react").RefAttributes<InputRef>>;
export interface TextAreaProps extends AntdTextAreaProps {
ref?: any;
type?: 'ghost' | 'block';
}
export declare const TextArea: import("react").NamedExoticComponent<TextAreaProps>;