import Chainable from './Chainable.js'; export default class ChainedSet extends Chainable { store: Set; constructor(parent: any); add(value: any): this; prepend(value: any): this; clear(): this; delete(value: any): this; values(): any[]; has(value: any): boolean; merge(arr: any[]): this; when(condition: any, whenTruthy?: (instance: this) => void, whenFalsy?: (instance: this) => void): this; }