import { type BuildMutator } from '../../url';
export type Label = string | string[];
interface SearchConf {
    labels?: Label[];
    terms?: string;
}
declare module '@lib/url' {
    interface PagedConf extends SearchConf {
    }
}
export declare const search: BuildMutator;
export {};
