/** * Returns a tuple of the given elements. * * It is the same as `[...elements] as const`, but with a more readable syntax. * @param elements The elements to return. * * @example * ```typescript * list(1, 2, 3); // => [1, 2, 3] * const as = list('a', 'b', 'c'); // as :: readonly ['a', 'b', 'c'] * ``` */ declare const list: ( ...elements: AS ) => AS; export default list; //# sourceMappingURL=list.d.ts.map