import { IconComponent } from '@consta/icons/Icon'; import React from 'react'; import { FieldPropSize } from '..'; import { PropsWithHTMLAttributesAndRef } from '../../../utils/types/PropsWithHTMLAttributes'; type FieldToggleVisiblePasswordButtonProps = PropsWithHTMLAttributesAndRef<{ size?: FieldPropSize; active?: boolean; children?: never; startIcon?: IconComponent; endIcon?: IconComponent; }, HTMLButtonElement>; export declare const FieldToggleVisiblePasswordButton: React.ForwardRefExoticComponent & React.RefAttributes>; export {};