interface Logger { info: (message: string) => void; log: (message: string) => void; error: (message: string) => void; } export default Logger;