import { Base, EventBase } from "survey-core";
import { ICreatorPresetConfig } from "./presets";
export declare class CreatorPresetsModel extends Base implements ICreatorPresetConfig {
    static defaultPresetName: string;
    getType(): string;
    presetName: string;
    onPresetSelected: EventBase<CreatorPresetsModel, {
        preset: ICreatorPresetConfig;
    }>;
    constructor();
}
