import type { DataSourceDefinition } from '@splunk/dashboard-types'; /** * Scrubs the definition of properties that do not impact the running of the search * @param {DataSourceDefinition} [def] * @returns {Partial} The scrubbed definition */ export declare const computeStableDSDefinition: (def?: DataSourceDefinition) => Partial; /** * Creates a hash based on the provided definition (scrubs non-important data) * @param {DataSourceDefinition} [def] * @returns {number} A stable hash representing the definition */ export declare const computeDSHash: (def?: DataSourceDefinition) => number; //# sourceMappingURL=computeStableDSDefinition.d.ts.map