import { RandomSquareKernel } from './randomsquarekernel'; /** * An anti-aliasing kernel which provides NDC offsets for anti-aliasing, e.g., when using multi-frame sampling. */ export declare class AntiAliasingKernel extends RandomSquareKernel { /** * AntiAliasingKernel is fixed to one-dimension (x-axis) and 2-components per sample. * @param width - Width of the kernel along its x-axis. */ constructor(width: GLsizei); /** * Invokes regeneration of all values. If width is either 8 or 64 pre-built kernels will be loaded (golden set). In * any other case, a random square kernel will be created. */ protected generate(): void; }