import type { Bud } from '@roots/bud-framework'; /** * User config parser */ declare class StaticConfiguration { bud: Bud; name: string; /** * Process */ get logger(): import("@roots/bud-support/logger").Logger; /** * Class constructor */ constructor(bud: Bud, name: string); /** * Handle static config object entry */ processRecordEntry([key, value]: [string, unknown], path?: Array): any; /** * Process static configuration */ execute(config: Record): Promise; } export default StaticConfiguration;