import React from 'react';
export type InputProps = {
    id: string;
    label?: string;
    placeholder?: string;
    value?: string;
};
export declare function Input(props: InputProps): React.JSX.Element | null;
