import { PostThreadConfig, PostThreadParams } from "./api/index.js"; /** * SWR hook for fetching a postThread in the browser. */ export declare const usePostThread: (params: PostThreadParams, config?: PostThreadConfig) => { isLoading: boolean; data: import("bluesky-embed-core/src/api/types/postThread.js").PostThread | undefined; error: any; }; export declare const useMounted: () => boolean;