export declare const debug: (...args: any) => void; export declare const debug2: (...args: any) => void; 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;