import { ApiBase } from './ApiBase'; import { IAdaptable } from '../../AdaptableInterfaces/IAdaptable'; import { RowFormApi } from '../RowFormApi'; import { RowFormInternalApi } from '../Internal/RowFormInternalApi'; export declare class RowFormApiImpl extends ApiBase implements RowFormApi { internalApi: RowFormInternalApi; constructor(_adaptable: IAdaptable); displayEditRowForm(primaryKey: any): Promise; displayCreateRowForm(): Promise; displayCloneRowForm(primaryKey?: any): Promise; displayDeleteRowForm(primaryKey?: any): void; }