export declare type LogCtx = {
    color: number;
    operation: string;
    margin: number;
};
export declare class Log {
    static level: number;
    static print(context: LogCtx, marker: string, message: string): void;
}
