import { IModelScopedOperationParams } from "@itwin/imodels-client-management";
/** Properties that should be specified when acquiring a new Briefcase. */
export interface BriefcaseProperties {
    /** Name of the device which will hold the briefcase. */
    deviceName: string;
}
/** Parameters for acquire Briefcase operation. */
export interface AcquireBriefcaseParams extends IModelScopedOperationParams {
    /** Properties of the new Briefcase. */
    briefcaseProperties?: BriefcaseProperties;
}
//# sourceMappingURL=BriefcaseOperationParams.d.ts.map