export default createVertexArray;
export type VertexArrayOptions = import("./types.js").PexResource;
/**
 * @typedef {import("./types.js").PexResource} VertexArrayOptions
 * @property {object} vertexLayout
 * @property {object} [attributes]
 * @property {object} [indices]
 */
declare function createVertexArray(ctx: any, opts: any): any;
