import React, { type ReactNode } from 'react'; export type LinkPickerSessionId = string; export declare const INIT_CONTEXT = "SESSION_UNINITIALIZED"; export declare const SessionContext: React.Context; interface SessionProviderProps { children: ReactNode; } export declare const LinkPickerSessionProvider: ({ children, }: SessionProviderProps) => React.JSX.Element; export declare const useLinkPickerSessionId: () => string; export {};