/** Routes based on whether all validation rules passed. */ export declare const RuleValidationNextEntryResult: { readonly Pass: "pass"; readonly Fail: "fail"; }; export type RuleValidationNextEntryResult = (typeof RuleValidationNextEntryResult)[keyof typeof RuleValidationNextEntryResult] | string;