import { FieldSymbol, HashedTable, Table } from "./types";
type DynamicCondition = string | Table | HashedTable | {
get(): string;
};
export declare function expandDynamic(input: DynamicCondition, evaluate: (name: string) => FieldSymbol | undefined): string;
export {};