import * as React from 'react';
import { FormComponentProps, FormComponent } from '@tomino/dynamic-form';
export declare class Signature extends React.Component<FormComponentProps> {
    static contextType: React.Context<import("../context").ContextType>;
    state: {
        modalOpen: boolean;
        modalRejectOpen: boolean;
        reason: string;
        password: string;
        loading: boolean;
        error: string;
        fontReady: boolean;
    };
    handleOpen: () => void;
    handleClose: () => void;
    componentDidMount(): Promise<void>;
    render(): JSX.Element;
}
export declare const SignatureView: FormComponent;
