import { ResourceType } from '../../utils/common-utils'; export declare const defaultIgnore: (entry: PerformanceEntry) => boolean; export type PerformancePluginConfig = { eventLimit: number; ignore: (event: PerformanceEntry) => any; recordAllTypes: ResourceType[]; sampleTypes: ResourceType[]; reportAllLCP: boolean; reportAllCLS: boolean; reportAllINP: boolean; }; export declare const defaultPerformancePluginConfig: { eventLimit: number; ignore: (entry: PerformanceEntry) => boolean; recordAllTypes: ResourceType[]; sampleTypes: ResourceType[]; reportAllLCP: boolean; reportAllCLS: boolean; reportAllINP: boolean; };