/**
 * Set the level of logs to print while running the SDK
 */
export type NamiLogLevel = "error" | "warn" | "info" | "debug";
export declare enum LogLevel {
    DEBUG = 1,
    INFO = 2,
    WARN = 3,
    ERROR = 4
}
