/// <reference types="react" />
declare const _default: {
    title: string;
    component: {
        ({ backgroundColor, size, label, behaviour }: {
            backgroundColor: any;
            size: any;
            label: any;
            behaviour: any;
        }): JSX.Element;
        propTypes: {
            backgroundColor: import("prop-types").Requireable<string>;
            label: import("prop-types").Validator<string>;
            onClick: import("prop-types").Requireable<(...args: any[]) => any>;
        };
        defaultProps: {
            backgroundColor: any;
            label: string;
            onClick: any;
        };
    };
    argTypes: {
        backgroundColor: {
            control: string;
        };
        size: {
            name: string;
            control: {
                type: string;
                options: string[];
            };
            defaultValue: string;
        };
        behaviour: {
            name: string;
            control: {
                type: string;
                options: string[];
            };
            defaultValue: string;
        };
    };
};
export default _default;
export declare const Headline: any;
export declare const Regular: any;
