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