import { Observable } from 'rxjs';
/**
* @description Вспомогательный компонент-кнопка "Выполнить действие"
*
* @example
*/
export declare class GasActionButtonComponent {
title: string;
iconName: string;
iconColor: string;
iconSize: number;
disabled: string | boolean;
invert: string | boolean;
multiple$: Observable;
getFormattedActionCount(actionCount: string | number): string;
}