import { type BunchCallbacks } from './shared'; /** * Reveal method payload definition. */ export type Reveal = BunchCallbacks; /** * Reveal the Bunch folder in Finder. * * @param payload Reveal method payload. * @returns Bunch reveal URL. * @example * reveal() * // => 'x-bunch://reveal' * @link https://bunchapp.co/docs/integration/url-handler/ */ export declare function reveal(payload?: Reveal): string;