import type { Bud } from '@roots/bud-framework';
import type { DefinePlugin } from '@roots/bud-framework/config';
export type Parameters = [DefinePlugin['definitions']];
export interface define {
    (...values: Parameters): Bud;
}
export declare function define(this: Bud, values: DefinePlugin['definitions']): Bud;
