import postRobot from "post-robot"; import Entry from "../entry"; import { IFieldModifierLocationInitData } from "../types"; import { IGetTagsOptions } from "../types/entry.types"; declare class FieldModifierLocationEntry extends Entry { constructor(initializationData: IFieldModifierLocationInitData, connection: typeof postRobot, emitter: EventEmitter); /** * Returns the value of the tags associated with the entry. * @returns {string[]} Returns an array of tags associated with the entry. */ getTags(options?: IGetTagsOptions): Array; /** * Sets the tags on the entry. * @param tags tags to be set on the entry * @returns {string[]} Returns an array of tags associated with the entry. */ setTags(tags: Array): Promise>; } export default FieldModifierLocationEntry; //# sourceMappingURL=entry.d.ts.map