import React from "react"; import { InputType } from "reactstrap/types/lib/Input"; export interface DefaultInputProps { color?: string; width?: string; title?: string; subtitle?: string; placeholder?: string; style?: React.CSSProperties; inputStyle?: React.CSSProperties; containerStyles?: React.CSSProperties; titleStyles?: React.CSSProperties; mask?: string; onChange?: (key: any) => void; value?: string; disabled?: boolean; name?: string; defaultValue?: string; type?: InputType; } declare const DefaultInput: { ({ color, width, title, subtitle, style, inputStyle, containerStyles, titleStyles, onChange, value, placeholder, mask, disabled, name, defaultValue, type, ...rest }: DefaultInputProps): JSX.Element; defaultProps: { color: string; width: undefined; title: undefined; subtitle: undefined; style: undefined; inputStyle: undefined; placeholder: string; containerStyles: undefined; mask: undefined; onChange: () => void; disabled: boolean; name: undefined; }; }; export default DefaultInput;