import type { ChuteActionPayload } from './shared'; /** * Start Chute with the selected configuration. * * @param payload Chute start payload. * @returns Chute start URL. * @example * start() * // => 'chute:///start' * * @example * start({ autoclose: true }) * // => 'chute:///start?autoclose=true' * @link https://manual.chute.life/other/url-scheme.html */ export declare function start(payload?: ChuteActionPayload): string;