import { GetterDescriptor } from "./GetterDescriptor.mjs";
//#region src/utils/reflection/isGetterDescriptor.d.ts
/**
 * A function for inferring a {@link TypedPropertyDescriptor} is a {@link GetterDescriptor}
 * @param propertyDescriptor The {@link TypedPropertyDescriptor} to inspect.
 * @returns `true` if {@link propertyDescriptor} describes a getter. Else, `false.
 * @since 3.0.0
 */
declare function isGetterDescriptor<T>(propertyDescriptor: TypedPropertyDescriptor<T>): propertyDescriptor is GetterDescriptor<T>;
//#endregion
export { isGetterDescriptor };
//# sourceMappingURL=isGetterDescriptor.d.mts.map