export declare type RemoteTransportOptions = { url: string; type?: string; dataType?: string; data?: { [key: string]: any; }; timeout?: number; }; export default class RemoteTransport { private options; private parameterMap; private ajax; constructor(options: RemoteTransportOptions); read(options: any): Promise; create(options: any): Promise; update(options: any): Promise; destroy(options: any): Promise; private setup(options, type); }