import { OnInit } from "@angular/core"; export declare class ButtonComponent implements OnInit { text: string; size: "medium" | "large"; color: "dark-green" | "orange" | "red"; disabled: boolean; disable: string; constructor(); ngOnInit(): void; ngOnChanges(): void; }