import type { Bud, Rules } from '@roots/bud-framework';
export type Source = Array<RegExp | string> | RegExp | string;
export type Parameters = [Source, Array<`${keyof Rules & string}`>?];
export interface compilePaths {
    (this: Bud, ...value: Parameters): Bud;
}
export declare const compilePaths: compilePaths;
