import React from 'react'; import { IconProps } from 'components/Icon'; export interface IconInputProps { /** An `input` element child */ children?: React.ReactNode; /** * FDS Icon _reference_ * `IconLeft={StarFilledIcon}` */ IconLeft?: React.ComponentType; /** * FDS Icon _reference_ * `IconRight={StarFilledIcon}` */ IconRight?: React.ComponentType; } /** * @param {Object} props react props * @returns {ReactElement} */ declare const IconInput: ({ IconLeft, IconRight, children }: IconInputProps) => JSX.Element; export default IconInput;