import Resolver from "arc-resolver";
import { type FlagSet } from "./flags";
export type Matches = {
    default: string;
    alternates: [Match, ...Match[]];
};
export type Match = {
    flags: FlagSet;
    value: string;
};
export declare const resolver: Resolver;
export declare function getMatches(id: string, flagSets: FlagSet[]): Matches | undefined;
export declare function clearCache(): void;
