import React, { FC, ReactNode } from 'react'; import { Props as BaseProps } from '../Button/base'; import { box } from '../../utility/box'; export type Props = typeof box.props & BaseProps & { loading?: boolean; variant: Variant; disabled?: boolean; children?: ReactNode; 'data-testid'?: string; }; export declare enum Variant { default = "default", info = "info", settings = "settings", ultimate = "ultimate" } declare const CorporateButton: FC>; export default CorporateButton;