export interface DiscoveredShard {
    dsn: string;
    shard: number;
    schema: string;
}
/**
 * Loads the list of all active schemas from the given DSNs.
 */
export declare function discoverShards({ dsns, }: {
    dsns: string[];
}): Promise<DiscoveredShard[]>;
//# sourceMappingURL=discoverShards.d.ts.map