import type { EntityPaths } from '../../../../entity/actions/parsePaths/index.js'; import type { Entity } from '../../../../entity/index.js'; import type { TransactGetItem } from '../transaction.js'; export type GetTransactionOptions = { tableName?: string; } & ({ attributes?: undefined; } | { attributes: EntityPaths[]; }); type OptionsParser = (entity: ENTITY, GetItemTransactionOptions: GetTransactionOptions) => Omit, 'TableName' | 'Key'>; export declare const parseOptions: OptionsParser; export {};