export declare const PRISMA_POSTGRES_PROVIDER = "prisma+postgres"; export declare const PRISMA_POSTGRES_PROTOCOL = "prisma+postgres:"; declare const prismaPostgresBrand: unique symbol; declare const prismaPostgresDevBrand: unique symbol; export type PrismaPostgresUrl = T & { readonly [prismaPostgresBrand]: true; }; export type PrismaPostgresDevUrl = PrismaPostgresUrl & { readonly [prismaPostgresDevBrand]: true; }; export declare function isPrismaPostgres(connectionString?: T): connectionString is PrismaPostgresUrl; export declare function isPrismaPostgresDev(connectionString?: T): connectionString is PrismaPostgresDevUrl; export {};