import { Colors } from 'types/entities.types'; export declare const FETCH_COLORS: string; export declare const SET_COLORS: string; export declare const setColors: (payload: unknown) => { type: string; payload: unknown; }; export declare type ColorsRes = Omit & { _id: string; }; export declare type SetColorsPayload = { colors: ColorsRes[]; };