export default function bind(_: any, properykey: string, decscriptor: PropertyDescriptor): {
    configurable: boolean;
    get(): any;
    set(value: any): void;
};
