import { type InputOwnProps, type InputWrapperOwnProps } from "../Input"; import type { PolymorphicComponentProps } from "../Polymorphic"; export interface InputBaseOwnProps extends InputOwnProps, InputWrapperOwnProps { } export type InputBaseProps = PolymorphicComponentProps; declare const defaultElement = "input"; /** 多态组件 */ export declare function InputBase(props: InputBaseProps): import("react").JSX.Element; export {};