declare const namespace = "telemetry";
declare module "actionhero" {
interface ActionheroConfigInterface {
[namespace]: ReturnType<typeof DEFAULT[typeof namespace]>;
}
}
export declare const DEFAULT: {
telemetry: () => {
enabled: boolean;
host: string;
};
};
export {};