import { BaseBuilder } from './base-builder.js';
import './types.js';

/**
 * Builder used when imgproxy is set in presets only mode: IMGPROXY_ONLY_PRESETS=true
 * https://github.com/imgproxy/imgproxy/blob/master/docs/presets.md#only-presets
 */
declare class ImgproxyPresetOnlyBuilder extends BaseBuilder {
    private presets;
    preset(...presets: string[]): this;
    protected serializeOptions(): string;
}

export { ImgproxyPresetOnlyBuilder };
