import { SeqStream } from "bytestreamjs";
import { FontTable } from "../Table";
export interface FPGMParameters {
    values?: Uint8Array;
}
export declare class FPGM extends FontTable {
    values: Uint8Array;
    constructor(parameters?: FPGMParameters);
    static get tag(): number;
    static fromStream(stream: SeqStream): FPGM;
}
