import { SyncValidation } from '../../types.js'; /** * Return type of the compile function */ type CompileReturnType = { choices?: any[]; ref?: string; }; /** * Ensure the value is one of the defined choices */ export declare const oneOf: SyncValidation; export {};