type WidgetFileResources = {
    readonly type: 'file';
    readonly js: string;
    readonly css: string;
    readonly html: string;
};
type WidgetZipResources = {
    readonly type: 'zip';
    readonly zip: string;
    readonly entryJs: string;
    readonly entryCss: string;
};
export type WidgetResources = WidgetFileResources | WidgetZipResources;
export declare function updateWidgetFromResources(widgetId: string, url: string, token: string, resources: WidgetResources): Promise<import("axios").AxiosResponse<any, any, {}>>;
export {};
