import React from 'react'; import { ButtonProps as AntButtonProps } from 'antd/lib/button/index'; export interface ButtonProps extends Omit { type?: 'text' | 'link' | 'ghost' | 'default' | 'primary' | 'secondary' | 'dashed' | 'download' | undefined; iconRight?: boolean; } export declare const PhenomButton: React.FC;