import type { ReactNode } from 'react'; export type InputElementProps = { element?: ReactNode; }; export declare const ICON_SIZES: { sm: number; md: number; lg: number; }; type InputElementObjProps = { id?: string; }; export declare const InputElementLeft: import("react").ForwardRefExoticComponent<{ [index: `data-${string}`]: unknown; as?: any; css?: import("@fuel-ui/css").ThemeUtilsCSS | undefined; className?: string | undefined; children?: ReactNode; } & InputElementProps & import("react").RefAttributes> & InputElementObjProps; export declare const InputElementRight: import("react").ForwardRefExoticComponent<{ [index: `data-${string}`]: unknown; as?: any; css?: import("@fuel-ui/css").ThemeUtilsCSS | undefined; className?: string | undefined; children?: ReactNode; } & InputElementProps & import("react").RefAttributes> & InputElementObjProps; export {};