import { Image } from '../../../types';

export declare const serializeImages: (images: Image[], project_id: string) => {
    images: {
        asset_id: string;
        project_id: string;
        asset_filename: string;
        type: string;
        edited_datetime: string | null | undefined;
        created_datetime: string | null | undefined;
    }[];
    imageFiles: never[];
};
