import React from 'react'; import type { ThemeVars } from '@coinbase/cds-common/core/theme'; import type { InputVariant } from '@coinbase/cds-common/types/InputBaseProps'; import type { SharedProps } from '@coinbase/cds-common/types/SharedProps'; import type { IconProps } from '../icons/Icon'; export type InputIconProps = { /** * If set to true, when parent input is focused, the icon will match the color of the focus state * @default false * */ disableInheritFocusStyle?: boolean; } & Omit & SharedProps; export declare const variantColorMap: Record; export declare const InputIcon: React.MemoExoticComponent< React.ForwardRefExoticComponent & React.RefAttributes> >; //# sourceMappingURL=InputIcon.d.ts.map