import { IView } from '../..'; import { FrameGraphSystem } from './System'; export declare class FrameGraphPass { name: string; data: PassData; execute: (fg: FrameGraphSystem, pass: FrameGraphPass, views: IView[]) => Promise; tearDown: () => void; }