import * as React from 'react';
export interface IProps {
    isType?: string;
    children: React.ReactNode;
    onClick?: () => any;
    css?: string;
    small?: boolean;
    loading?: boolean;
    response?: string | null;
    disabled?: boolean;
    type: 'button' | 'submit' | 'reset';
    role?: string;
    last?: boolean;
}
declare const _default: ({ children, isType, loading, response, disabled, ...props }: IProps) => JSX.Element;
export default _default;
