export declare type T_CALL_SECTIONS = "data"; export declare type T_JOBS = "query"; export interface IJobConfig { type?: string; segment?: string; } export declare type T_ENV = "local" | "develop" | "staging" | "production"; export declare const endpoints: { data: { url: { local: string; develop: string; development: string; production: string; staging: string; }; query: { type: string; segment: string; }; }; };