import type { DataTableConfig } from '../DataTable/public.api.js'; /** * Gets DataTable configuration, merging the default ones with the stringified json config. * For the case that there is a conflict property, default would prevail. * For the case that there is any parse error, it will return an empty config. * * @param serializedConfig - stringify json config * * @returns - DataTableConfig */ export declare function deserializeDataTableConfig(serializedConfig: string): DataTableConfig;