export default function bound(target: any, propertyKey: string, descriptor: PropertyDescriptor): {
    configurable: boolean;
    get(): () => any;
};
