/**
* @name Loading Button
* @description Change the State of Button to loading
*
* @category forms
* @component buttons
* @section loading
*
* @html
*
*
*
*
*
*
*
*
*
*
* @param loading - triggers loading state (expression)
* @param ngDisabled - disables button (boolean or expression)
*
*/
export declare function mdBtn(): {
restrict: string;
transclude: boolean;
replace: boolean;
priority: number;
scope: {
loading: string;
ngDisabled: string;
};
template: string;
link: (scope: any, elem: any, attrs: any) => void;
};