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