import { type BunchCallbacks } from './shared'; /** * Refresh method payload definition. */ export type Refresh = BunchCallbacks; /** * Force Bunch to reload Bunch files. * * @param payload Refresh method payload. * @returns Bunch refresh URL. * @example * refresh() * // => 'x-bunch://refresh' * @link https://bunchapp.co/docs/integration/url-handler/ */ export declare function refresh(payload?: Refresh): string;