export declare class CurrentDocumentService {
    ajsService: any;
    documentData$: any;
    constructor();
    /**
     * get the template from the main document - which is the document that the object nav bar is linked to
     */
    getTemplate(): any;
    setTemplate(template: any): any;
    /**
     * get the document from the main document - which is the document that the object nav bar is linked to
     */
    getDocument(): any;
    setDocument(document: any): any;
    /**
     * set showFormAfterCreated. If false, the form will not be navigated to on save
     */
    setShowFormAfterCreated(showFormAfterCreated: any): any;
}
