export declare class AcDDStoredProcedure {
    static readonly keyStoredProcedureName = "stored_procedure_name";
    static readonly keyStoredProcedureCode = "stored_procedure_code";
    storedProcedureName: string;
    storedProcedureCode: string;
    static fromJson(jsonData: {
        [key: string]: any;
    }): AcDDStoredProcedure;
    static getInstance({ storedProcedureName, dataDictionaryName }: {
        storedProcedureName: string;
        dataDictionaryName?: string;
    }): AcDDStoredProcedure;
    setValuesFromJson(jsonData?: {
        [key: string]: any;
    }): void;
    toJson(): {
        [key: string]: any;
    };
    toString(): string;
}
