import { ReactNode } from 'react';
import { seerbitPayTypes, responseType } from 'helpers';
interface ButtonTypes extends seerbitPayTypes {
    callback?: (response: responseType, closeModal: () => void) => void;
    close?: () => void;
    text?: string;
    className?: string;
    children?: ReactNode;
}
declare const SeerbitButton: ({ callback, close, text, className, children, ...res }: ButtonTypes) => JSX.Element;
export default SeerbitButton;
