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<void>;
    displayCreateRowForm(): Promise<void>;
    displayCloneRowForm(primaryKey?: any): Promise<void>;
    displayDeleteRowForm(primaryKey?: any): void;
}
