import { InternalApiInput, InternalApiResult } from "@kottster/common"; import { Action } from "../models/action.model"; /** * Get a value from the storage by its key */ export declare class GetStorageValue extends Action { execute({ key }: InternalApiInput<'getStorageValue'>): Promise>; }