/** * @packageDocumentation * @module DaVinci_API */ import { CHANNEL_TYPES } from './ChannelTypes'; import { ISearchLayout } from './SearchLayout'; /** * Defines how to search and pop records in the CRM. * * A collection of [[SearchLayout]] */ export declare class SearchLayouts { layouts: { [channel: number]: ISearchLayout; }; static fromJSON(layouts: { [channel: number]: ISearchLayout; }): SearchLayouts; constructor(layouts?: { [channel: number]: ISearchLayout; }); toJSON(): { [channel: number]: ISearchLayout; }; setLayout(channels: CHANNEL_TYPES[], layout: ISearchLayout): void; getLayout(channel: CHANNEL_TYPES): ISearchLayout; getAllLayouts(): { [channel: number]: ISearchLayout; }; }