import { Env } from '../shared/runtime.js'; /** * Contructor */ declare type BasicEndpoint = { index: string; } & Record; declare type Conf = { origin: string; health: BasicEndpoint; user: BasicEndpoint; dapp: BasicEndpoint; notification: BasicEndpoint; userNotification: BasicEndpoint; }; declare const conf: Record; /** * Module exports */ export default conf;