import React from 'react'; import type { SharedAccessibilityProps } from '@coinbase/cds-common/types/SharedAccessibilityProps'; 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; compact?: boolean; } & Omit & SharedProps & Pick; export declare const InputIcon: React.NamedExoticComponent; //# sourceMappingURL=InputIcon.d.ts.map