export declare class Prop4 { private values; private onChangedCallback; private callbackThis; constructor(values: T[], onChangedCallback: (index?: U, index2?: V, oldValue?: T, value?: T) => void, callbackThis: Object); get(index: U, index2: V): T; set(index: U, index2: V, value: T): void; toString(): string; } export default Prop4;