import type { Update } from '@use-gpu/state'; import type { Blending, Side } from '@use-gpu/core'; export type PipelineOptions = { mode: string; blend: Blending | GPUBlendState | null; side: Side; shadow: boolean; scissor: any; depthWrite: boolean; depthTest: boolean; alphaToCoverage: boolean; alphaToDiscard: boolean; topology: GPUPrimitiveTopology; stripIndexFormat: any; }; export declare const usePipelineOptions: (options: Partial) => [Update, Record];