import { ListOptions } from '../types/list.js'; declare const MAX_LIST_LIMIT = 100; /** * Parses `?limit=&offset=` into pagination options. * * Returns undefined when `limit` is absent or unparseable — the caller then * serves the legacy bare-array response. Garbage never 400s: pagination is * an opt-in enhancement, not a validation surface. */ declare function parseListOptions(query: Record): Required | undefined; export { MAX_LIST_LIMIT, parseListOptions };