declare module 'secret-stack/bare' { interface Stack { use(module: any): Stack call(a: null, config: unknown) } function SecretStack(config?: unknown): Stack export = SecretStack } declare module 'secret-stack/plugins/net' { }