export declare const endpoint: string;
export declare enum ACTIONS {
    getContent = "getContent"
}
export interface GetContentRequest {
    type: ACTIONS.getContent;
    pluginId: string;
}
export interface GetContentResponse {
    type: ACTIONS.getContent;
    ok: boolean;
    message?: string;
    payload: object;
}
export declare type ActionRequests = GetContentRequest;
export declare type ActionResponses = GetContentResponse;
//# sourceMappingURL=plugins.d.ts.map