import type { LC, PropsWithChildren, LiveElement } from '@use-gpu/live'; import type { StorageTarget, TextureTarget } from '@use-gpu/core'; export type StageProps = PropsWithChildren<{ target?: StorageTarget | TextureTarget; targets?: (StorageTarget | TextureTarget)[]; render?: () => LiveElement; children?: LiveElement | (() => LiveElement); }>; /** Set the target (`@{ComputeContext}) for compute kernels (`@{}`) inside. */ export declare const Stage: LC;