///
import { ButtonProps } from '../types';
import { ExtendedTextComponent, ExtendedTextProps } from '../../types';
type Props = {};
type ButtonTextProps = ExtendedTextProps;
type ButtonTextComponent = ExtendedTextComponent;
type StyledButtonTextProps = ButtonTextProps & Pick;
export { ButtonTextComponent, ButtonTextProps, StyledButtonTextProps };