import { type BoxFilePayload } from './shared'; export type OpenFilePayload = BoxFilePayload; /** * Open a file object in the Box mobile app. * * @param payload Box file payload. * @returns Box file deep link. * @example * openFile({ id: '987654321' }) * // => 'boxapp://file?id=987654321' * @link https://developer.box.com/guides/mobile/mobile-deep-linking/ */ export declare function openFile(payload: OpenFilePayload): string;