import { OnChanges, OnInit, SimpleChanges } from "@angular/core"; import { FeedbackBlockKind } from "@spscommerce/ds-shared"; export declare class SpsMicroBlockComponent implements OnInit, OnChanges { static readonly displayName = "sps-micro-block"; static readonly props: { kind: string; message: { type: string; required: boolean; }; }; kind: FeedbackBlockKind; message: string; _icon: string; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; }