import { MetadataType } from '../metadataType';
import { ContentDecompositionStrategy } from './contentDecompositionStrategy';
export declare class StaticResourceContentStrategy implements ContentDecompositionStrategy {
    metadataType: MetadataType;
    metadataRegistry: any;
    workspaceVersion: any;
    constructor(metadataType: MetadataType, metadataRegistry: any, workspaceVersion: any);
    getContentPaths(metadataFilePath: string): string[];
    saveContent(metadataFilePath: any, retrievedContentFilePaths: any, retrievedMetadataFilePath: any, createDuplicates: any, unsupportedMimeTypes: string[], forceoverwrite?: boolean): Promise<[string[], string[], string[], string[]]>;
}
