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