declare const table: { (tabularData?: any, properties?: string[] | undefined): void; (tabularData: any, properties?: readonly string[] | undefined): void; }; export declare const trace: (...consoleArguments: unknown[]) => void; export declare const log: (...consoleArguments: unknown[]) => void; export declare const getLogger: ({ hre, prefix, }: { hre: CustomHardHatRuntimeEnvironment; prefix?: string | undefined; }) => { info: typeof log; error: typeof log; success: typeof log; table: typeof table; }; export {};