import { Element } from "../element.js";
export interface KmapGroupStyle {
    color?: string;
    fill?: string | boolean;
    lw?: number;
    ls?: string;
}
export declare class Kmap extends Element {
    constructor(userParams?: Record<string, unknown> & {
        names?: string;
        truthtable?: [string, string][];
        groups?: Record<string, KmapGroupStyle>;
        default?: string;
    });
}
