export interface NewProperty<T = any> {
    key: string;
    value: T;
}
