/// <reference types="react" />
import { InferComponentProps } from '../types.js';
import { Input } from '../input.js';
type InputWithSensitivityButtonProps = {
    isVisible: boolean;
    onToggle: () => void;
} & InferComponentProps<typeof Input>;
export declare const InputWithSensitivityButton: import("styled-components").StyledComponent<({ isVisible, onToggle, ...props }: InputWithSensitivityButtonProps) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
export {};
