import { IResourceDict, ILinkResourceDict } from "../../types/core/Core"; import { IBackground, ILinkBackground } from "../../types/backgrounds/Background"; export interface ILinkBackgroundDict extends ILinkResourceDict { [uuid: string]: ILinkBackground; } export interface IBackgroundDict extends IResourceDict { [uuid: string]: IBackground; } export declare const backgrounds: ILinkBackgroundDict; export declare const backgroundsDict: IBackgroundDict;