export declare const DOC_TYPES: {
    readonly Pdf: "pdf";
    readonly Csv: "csv";
    readonly Xls: "xls";
    readonly Zip: "zip";
};
export type DocType = (typeof DOC_TYPES)[keyof typeof DOC_TYPES];
export declare const ASSET_TYPES: {
    readonly Video: "video";
    readonly Image: "image";
    readonly Document: "doc";
    readonly Audio: "audio";
};
export type AssetType = (typeof ASSET_TYPES)[keyof typeof ASSET_TYPES];
