import React from "react";
import "./input.scss";
interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
    placeholder?: string;
    type?: string;
    iconClassName?: string;
    isSearch?: boolean;
    searchData?: string[];
}
declare const SfInput: React.FC<InputProps>;
export default SfInput;
