import * as React from 'react';
import './index.scss';
export interface OadpButtonProps {
    name?: string;
    id?: string;
    label?: string;
    field?: any;
    type?: 'primary' | 'secondary' | 'normal';
    size?: 'small' | 'medium' | 'large';
    text?: boolean;
    disabled?: boolean;
    style?: React.CSSProperties;
    onClick?: any;
    __designMode?: string;
}
export declare class OadpButton extends React.Component<OadpButtonProps, any> {
    constructor(props: OadpButtonProps);
    render(): React.JSX.Element;
}
export default OadpButton;
