/** * Copyright (c) 2026, Salesforce, Inc., * All rights reserved. * For full license text, see the LICENSE.txt file */ interface RecordResponse { fields: Record; } export declare function getRecord(recordId: string, params?: Record): Promise; export declare function createRecord(apiName: string, fields: Record): Promise; export declare function updateRecord(recordId: string, fields: Record): Promise; export declare function deleteRecord(recordId: string): Promise; export {}; //# sourceMappingURL=records.d.ts.map