import { type BuildMutator, type DatePar } from '../../url';
export type DatesConf = Partial<{
    [k in DatePar]: Date | string | number;
}>;
declare module '@lib/url' {
    interface PagedConf extends DatesConf {
    }
}
export declare const dates: BuildMutator;
