import type { ProjectCommandArguments } from '../../types/commands/common_arguments'; export interface DatastoreCommandArguments { /** @description datastore name */ datastoreName: string; /** @description datastore get primary key value*/ primaryKeyValue: string; /** @description datastore put [item details] */ putItem: object; /** @description datastore query [expression] */ queryExpression: string; /** @description datastore query [expression expression_values] */ queryExpressionValues: object; } /** * `slack datastore get` * @returns command output */ export declare const datastoreGet: (args: ProjectCommandArguments & Pick) => Promise; /** * `slack datastore delete` * @returns command output */ export declare const datastoreDelete: (args: ProjectCommandArguments & Pick) => Promise; /** * `slack datastore put` * @returns command output */ export declare const datastorePut: (args: ProjectCommandArguments & Pick) => Promise; /** * `slack datastore query` * @returns command output */ export declare const datastoreQuery: (args: ProjectCommandArguments & Pick) => Promise; declare const _default: { datastoreGet: (args: ProjectCommandArguments & Pick) => Promise; datastoreDelete: (args: ProjectCommandArguments & Pick) => Promise; datastorePut: (args: ProjectCommandArguments & Pick) => Promise; datastoreQuery: (args: ProjectCommandArguments & Pick) => Promise; }; export default _default; //# sourceMappingURL=datastore.d.ts.map