export declare enum Modules {
    HELLO_FUNC = "HELLO_FUNC",
    MSG_PROVIDER = "MSG_PROVIDER",
    MSG_PRINTER = "MSG_PRINTER"
}
export declare type MsgProvider = (lang: string) => string;
export declare type MsgPrinter = (msg: string) => void;
export declare type HelloFunction = (lang: string) => void;
