import { Thing } from './types'; export declare function log(...args: [any?, ...any[]]): any; export declare function isUnworthyOfLogging(arg: any): boolean; export declare function expose(name: string, component: T): T; export declare const dev: { log: typeof log; expose: typeof expose; env: import('./environment').Environment; settings: Record; };