import React, { FC } from 'react'; import { Props as BaseProps } from '../Button/base'; import { IconSize } from '../Icon'; import { box } from '../../utility/box'; import { IconType } from '../IconProvider/IconType'; type Brightness = 'light' | 'dark'; export type PropsType = typeof box.props & BaseProps & { variant: Variant; icon?: IconType; alignIcon?: 'left' | 'right'; iconSize?: IconSize; backdropLuminosity?: Brightness; }; type Variant = 'primary' | 'secondary'; declare const TextualButton: FC>; export default TextualButton;