import { Constant } from ".";
export interface RowConstant {
    p: number;
    m: string[][];
    c: string[];
}
export declare const loadConstant: (constant: RowConstant) => Constant;
