import 'graphile-build'; import 'graphile-build-pg'; import type { GraphileConfig } from 'graphile-config'; export type { PostgisExtensionInfo } from '../types'; /** * PostgisExtensionDetectionPlugin * * Detects PostGIS presence in the database by searching for geometry/geography * codecs in the pgRegistry. Stores detected info on the build object for * downstream plugins. * * Gracefully degrades if PostGIS is not installed. */ export declare const PostgisExtensionDetectionPlugin: GraphileConfig.Plugin;