/**
 * Get the preferred package version for constructing a command submission
 *
 * @example
 *   ```typescript
 *   const result = await client.interactiveSubmissionGetPreferredPackageVersion({
 *   packageName: 'my-package',
 *   parties: ['Alice', 'Bob'],
 *   synchronizerId: 'sync-123'
 *   });
 *
 *   ```;
 */
export declare const InteractiveSubmissionGetPreferredPackageVersion: new (client: import("../../../../../core").BaseClient) => import("../../../../../core").ApiOperation<{
    packageName: string;
    parties?: string[] | undefined;
    vettingValidAt?: string | undefined;
    synchronizerId?: string | undefined;
}, {
    packagePreference?: {
        packageReference: {
            packageId: string;
            packageName: string;
            packageVersion: string;
        };
        synchronizerId: string;
    } | undefined;
}>;
//# sourceMappingURL=get-preferred-package-version.d.ts.map