export interface ILog {
    value: string;
    stack: Array<IStackDetail>;
}
export interface IStackDetail {
    functionName: string;
    filePath: string;
}
export declare class Logger {
    static readonly LOGS: Array<ILog>;
    static log(value: string): void;
}
