import { type RefObject } from 'react'; interface ExposureOptions { componentType: string; componentName: string; componentTitle?: string; componentDescription?: string; navigation?: string; pageGroup?: string; position?: number; } export declare const useExposure: (ref: RefObject, { componentType, componentName, componentTitle, componentDescription, navigation, position }: ExposureOptions) => void; export {};