import type { EmptyObject } from '../../../../framework-types/BaseTypes'; import type { StateAtom } from '../../core/state/Types'; import type { Transient } from '../../core/utils/StateUtils'; import type { AdvertisingBaseContext } from './Types'; type ClickThroughState = { url: string; clicked: Transient; }; export type ClickThroughAtom = StateAtom; export declare function createClickThroughAtom(context: AdvertisingBaseContext, url: string): ClickThroughAtom; export {};