export declare type DefineProperty = (t: any, p: keyof T, a: PropertyDescriptor) => boolean; export declare type DefinePropertyTyped = (t: any, p: keyof T, a: TypedPropertyDescriptor) => boolean; export declare type DefineProperties = (t: any, o: { [P in keyof T]?: TypedPropertyDescriptor; }) => any;