import IBackend from '../../IBackend'; export default class Backend implements IBackend { private data; private readonly name; constructor(); getName(): string; supports(operation: string): boolean; execute(operation: string, data: object, options: object): Promise; createOperation({ data }: any, options: object): Promise; updateOperation({ id, data }: any, options: object): Promise; checkExistsOperation({ id }: any, options: object): Promise; getOperation({ id, fields }: any, options: object): Promise; removeOperation({ id }: any, options: object): Promise; } //# sourceMappingURL=Backend.d.ts.map