import React from 'react'; import { Button as AntButton } from 'antd'; import { ButtonProps as AntButtonProps } from 'antd/lib/button'; import './styles.scss'; export declare type ButtonProps = { type?: 'secondary' | AntButtonProps['type']; variant?: 'basic' | 'grey'; loadingVariant?: 'cover' | 'basic'; indicator?: React.ReactNode; loading?: boolean; loadingDelay?: number; autoLoading?: boolean; } & Omit; declare const ForwardRefButton: React.ForwardRefExoticComponent<{ type?: 'secondary' | AntButtonProps['type']; variant?: 'basic' | 'grey'; loadingVariant?: 'cover' | 'basic'; indicator?: React.ReactNode; loading?: boolean; loadingDelay?: number; autoLoading?: boolean; } & Omit; } & import("antd/lib/button/button").BaseButtonProps & Omit, "type" | "onClick"> & { htmlType?: "button" | "submit" | "reset"; onClick?: React.MouseEventHandler; } & Omit, "type" | "onClick">>, "type" | "loading"> & React.RefAttributes>; declare const ExportButton: { Group?: typeof AntButton.Group; } & typeof ForwardRefButton; export default ExportButton;