UNPKG

@navinc/base-react-components

Version:
10 lines (9 loc) 534 B
/// <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;