declare const logger: import("consolite").ExtendConsole & Console & { [x: string]: Function; }; export { logger }; export declare const delayMillis: (delayMs: number) => Promise; /** * Return trimmed, dedented text. * Just like the Python equivalent: https://docs.python.org/3/library/textwrap.html#textwrap.dedent */ export declare const dedent: (text: string) => string;