import { SqupApi } from "../types/SqupContext"; export declare class MockSqupApi implements SqupApi { messages: string[]; constructor(); addMessage(prefix: string, message: string | null | undefined, obj?: unknown): void; log: { debug: (message: string | null | undefined, obj?: unknown) => void; info: (message: string | null | undefined, obj?: unknown) => void; warn: (message: string | null | undefined, obj?: unknown) => void; error: (message: string | null | undefined, obj?: unknown) => void; }; report: { warning: (message: string) => void; error: (message: string) => void; }; patchConfig: (propertyName: string, propertyValue: any, encryption?: string | string[]) => void; runtimeContext: { getRemainingTimeMs: () => number; }; }