import { CreativeImage } from 'types/entities.types'; export declare const SET_CREATIVE_IMAGES_BY_GROUP: string; export declare type CreativeImageRes = Omit & { _id: string; }; export interface SetCreativeImagesPayload { creativeImagesList: CreativeImageRes[]; } export declare const setCreativeImagesByGroup: (payload: SetCreativeImagesPayload) => { type: string; payload: SetCreativeImagesPayload; };