import { ReactElement, ReactNode, ButtonHTMLAttributes } from 'react';
import { KlashaOptionsProps } from './types';
interface KlashaButtonProps extends KlashaOptionsProps {
    text?: string;
    className?: string;
    children?: ReactNode;
    disabled?: boolean;
    type?: ButtonHTMLAttributes<HTMLButtonElement>['type'];
    callBack?: Function;
}
declare const KlashaButton: ({ text, className, children, disabled, type, callBack, ...others }: KlashaButtonProps) => ReactElement;
export default KlashaButton;
