import { ReactNode } from 'react';
interface IconicInputProps {
    funcss?: string;
    children?: ReactNode;
    input?: ReactNode;
    iconicBg?: string;
    leftIcon?: ReactNode;
    rightIcon?: ReactNode;
}
export default function IconicInput({ funcss, children, leftIcon, rightIcon, input, iconicBg, }: IconicInputProps): any;
export {};
