import { TDSite } from '../types'; /** * Mapping of Treasure Data sites to their Trino API endpoints */ export declare const TD_ENDPOINTS: Record; /** * Gets the Trino API endpoint URL for a given Treasure Data site * @param site - The TD site identifier (us01, jp01, eu01, ap02, ap03, dev) * @returns The full HTTPS URL for the Trino API endpoint * @throws {Error} If the site is not recognized */ export declare function getEndpointForSite(site: TDSite): string; /** * Gets the default Trino port number * @returns The port number (443 for HTTPS) */ export declare function getTrinoPort(): number; /** * Gets the Trino catalog name for Treasure Data * @returns The catalog name ('td') */ export declare function getCatalog(): string; //# sourceMappingURL=endpoints.d.ts.map