import type { TextButtonProps } from './types'; import type { ReactElement } from 'react'; /** * Текстовая кнопка. * @param props Свойства. * @return Элемент. */ export declare function TextButton({ size, color, children, className, startIcon: StartIcon, endIcon: EndIcon, buttonRef, anchorRef, underline, disabled, iconGutter, 'data-testid': testId, ...restProps }: TextButtonProps): ReactElement>;