interface ITable {
    col: string[];
    row: string[];
    value: string[][];
}
export declare const createTable: (table: ITable) => Map<string, Map<string, string>>;
export declare const create32bitModRmTable: () => Map<string, Map<string, string>>;
export declare const create32bitSIBtable: () => Map<string, Map<string, string>>;
export declare const create16bitRmTable: () => Map<string, Map<string, string>>;
export {};
