declare const apiEndpoint: string;
declare const graphqlEndpoint: string | undefined;
declare const secret: string | undefined;
/** Provides access to values read from environment. If variables don't exist a default value will be used or an error will be thrown. */
export { secret, apiEndpoint, graphqlEndpoint };
