import { SearchLayouts } from '../models/SearchLayouts'; /** * Apps that integrate with CRM should register for this event to tell other apps which fields are important in a record. * The [[SearchLayouts]] should be configured either in the CRM or in the app's config in Creator Studio. * * See [[getSearchLayout]] * * @param callback This function should return(via a promise) the configured SearchLayouts */ export declare function registerGetSearchLayout(callback: () => Promise): Promise; /** * Gets the configured search layouts * * See [[registerGetSearchLayout]] * @returns Configured search layouts */ export declare function getSearchLayout(): Promise;