import type { Bud } from '@roots/bud-framework'; export interface setPublicPath { (publicPath?: ((publicPath: string | undefined) => string | undefined) | string | undefined): Bud; } /** * Set the application public path (e.g. `/assets`) * * @remarks * The default public path is `` (equivalent ot `auto`). * * @example * Set the default path using a string * * ```js * app.setPublicPath('/app/themes/sage/dist') * ``` * * @example * Set the publicPath using a function. * * ```js * app.setPublicPath(publicPath => { * return `web/assets/${publicPath}` * }) * ``` * * @see {@link https://bud.js.org/docs/bud.setPublicPath} */ export declare const setPublicPath: setPublicPath;