import { type FC } from 'react'; import { ButtonProps } from 'antd'; export interface IGBIButtonProps extends ButtonProps { text?: string; } declare const GBIButton: FC; export default GBIButton;