import * as React from 'react'; import type { Configuration, VariantType } from '@box/unified-share-modal'; import API from '../../api'; import type { ItemType } from '../../common/types/core'; export interface ContentSharingV2Props { /** api - API instance */ api: API; /** children - Children for the element to open the Unified Share Modal */ children?: React.ReactElement; /** config - Configuration object for the Unified Share Modal */ config?: Configuration; /** itemId - Box file or folder ID */ itemId: string; /** itemType - "file" or "folder" */ itemType: ItemType; /** variant - "desktop" or "modal" variant of the Unified Share Modal */ variant?: VariantType; } declare const _default: React.FC; export default _default;