import { ComponentInterface } from '../../stencil-public-runtime';
export declare class MwcplButton implements ComponentInterface {
    /**
     * Label for the button.
     */
    label: string;
    /**
     * Makes the button text uppercase.
     */
    uppercase: boolean;
    /**
     * Creates a fullwidth button.
     */
    fullwidth: boolean;
    /**
     * Creates an outlined button.
     */
    outlined: boolean;
    /**
     * Makes the button non interactive.
     */
    disabled: boolean;
    /**
     * Creates a button with rounded corners.
     */
    rounded: boolean;
    /**
     * Adds a loading indicator.
     */
    loading: boolean;
    render(): any;
}
