/** * `odoo records` command group — generic CRUD on any Odoo model. * * Commands: * records search Filter + list records [READ] * records get Fetch a single record [READ] * records create Create a record [WRITE] * records write Update records (batch) [WRITE] * records delete Delete a record [DESTRUCTIVE] * records count Count matching records [READ] * records call Call arbitrary method [WRITE] */ import { Command } from 'commander'; export declare function buildRecordsCommand(): Command; //# sourceMappingURL=records.d.ts.map