import { InputHTMLAttributes } from 'react';
export interface InputProps extends InputHTMLAttributes<HTMLInputElement> {
    /**
     * Wheather the input is disabled
     */
    disabled?: boolean;
    /**
     * Placeholder text
     */
    placeholder?: string;
}
