import React, { FC } from 'react'; import { IconType } from '../Icon'; declare type Props = { type: 'primary' | 'primaryOrange' | 'secondary' | 'secondaryHighlighted'; buttonSize?: 'medium' | 'large'; iconLeft?: IconType; }; export declare const Button: FC & Props>; export {};