import type { Bud } from '@roots/bud-framework'; export interface get { (label: string, tap?: (bud: Bud) => Bud): Bud; } /** * Returns {@link Bud} instance from {@link Bud.children} * * @remarks * An optional {@link tap} function can be provided to configure the {@link Bud} instance. * * @example * ```js * bud.get(label) * ``` */ export declare const get: get;