interface InputProps { label?: string; type?: 'text' | 'number' | 'password' | 'email'; value?: string; placeholder?: string; onChange?: (value: string) => void; description?: string; } export declare function Input(props: InputProps): import("solid-js").JSX.Element; export {};