import { IArtistOption } from './../types/artists'; import { IArtistAjaxResponse } from "../types/artists"; import { IWebCompleteResponse } from "../types/web-complete"; export declare function artistAjaxResponseToWebComplete(response: IArtistAjaxResponse): IWebCompleteResponse; export declare function webCompleteResponseToArtistOption(response: IWebCompleteResponse, enabled?: boolean): { params?: import("../types/artists").IArtistOptionParams; artist_id?: number; attraction_id?: number; label: string; enabled: boolean; collapsed?: boolean; }; export declare function setDefaultParamsForArtistOption(option: IArtistOption): { params?: import("../types/artists").IArtistOptionParams; artist_id?: number; attraction_id?: number; label: string; enabled: boolean; collapsed?: boolean; }; export declare function artistOptionToAjaxResponse(option: IArtistOption): IArtistAjaxResponse; export declare function ajaxResponseEqualsArtistOption(response: IArtistAjaxResponse, option: IArtistOption): boolean; export declare function ajaxResponseRoughEqualsArtistOption(response: IArtistAjaxResponse, option: IArtistOption): boolean;