import { AttributeInfo } from '../internal/attributeInfo';
import { ImageSaveOptionsData } from './imageSaveOptionsData';
export declare const importsMapGifSaveOptionsData: {
    ImageSaveOptionsData: typeof ImageSaveOptionsData;
};
/**
 * Container class for gif save options.
 */
export declare class GifSaveOptionsData extends ImageSaveOptionsData {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    constructor(init?: Partial<GifSaveOptionsData>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
