import type { Bud } from '@roots/bud-framework'; /** * User config parser */ declare class DynamicConfiguration { bud: Bud; /** * Class constructor */ constructor(bud: Bud); /** * Process static configuration */ execute(config: (bud: Bud) => Promise): Promise; } export default DynamicConfiguration;