import { Parser } from '../types';
/**
 * Get elements from a tuple type.
 *
 * @param type The tuple type to get the types for.
 * @return The elements of the tuple as string array.
 */
export declare const getTupleElements: (type: string) => string[];
export declare const tuple: Parser<unknown[]>;
