/** Base class for progress bar fill functions */ export declare abstract class UIProgressMaskFunction { /** GLSL shader source code defining fill behavior */ readonly source: string; protected dirtyInternal: boolean; protected constructor( /** GLSL shader source code defining fill behavior */ source: string); }