import { IExternalBuffer } from '../IExternalBuffer';
import { PngDataArray } from '../types';
interface DecodeInterlaceNullParams {
    data: Uint8Array;
    width: number;
    height: number;
    channels: number;
    depth: number;
}
export declare function decodeInterlaceNull(params: DecodeInterlaceNullParams, externalBuffer?: IExternalBuffer): PngDataArray;
export {};
