import { ContextModule, ScreenOwnerType, TappedLink } from "../../Schema";
export interface TappedLinkArgs {
    contextModule: ContextModule;
    contextScreenOwnerType: ScreenOwnerType;
    contextScreenOwnerId?: string;
    contextScreenOwnerSlug?: string;
    destinationPath: string;
    destinationScreenOwnerId?: string;
    destinationScreenOwnerSlug?: string;
    destinationScreenOwnerType?: ScreenOwnerType;
}
export declare const tappedLink: ({ contextModule, contextScreenOwnerType, contextScreenOwnerId, contextScreenOwnerSlug, destinationPath, destinationScreenOwnerSlug, destinationScreenOwnerId, destinationScreenOwnerType, }: TappedLinkArgs) => TappedLink;
