import Color from "../system/Color";
import { StiLabel, StiDescription } from "../system/interfaces";
import StiJson from "../system/StiJson";
import { StiFormElement } from "./base/StiFormElement";
import { StiTextItem } from "./text/StiTextItem";
export declare class StiPDFSignatureElement extends StiFormElement implements StiLabel, StiDescription {
    type: string;
    required: boolean;
    description: StiTextItem;
    signaturePanelWidth: number;
    signaturePanelHeight: number;
    placeholder: string;
    placeholderBackColor: Color;
    canvasHeight: number;
    loadWithAspectRatio: boolean;
    SignatureTextBoxText: string;
    constructor();
    saveToJsonObject(options: any): StiJson;
    loadFromJsonObject(json: StiJson): void;
}
