import { Component, JSXElement } from 'solid-js';
import { BaseInputProps } from '.';
export interface InputProps extends BaseInputProps {
    value?: string;
    icon?: JSXElement;
}
export declare const Input: Component<InputProps>;
