/** * Getters that just chain, * useful for making human-readable code */ declare class ConditionChainers { get has(): this; get to(): this; get is(): this; get can(): this; get be(): this; get and(): this; } export { ConditionChainers };