import type { QuerierPool } from '../../type/index.js';
export declare function Transactional({ propagation, querierPool, }?: {
    readonly propagation?: 'supported' | 'required';
    readonly querierPool?: QuerierPool;
}): (target: object, key: string, propDescriptor: PropertyDescriptor) => void;
