import type { PostThread, PostThreadConfig, PostThreadParams } from "./types/index.js";
export declare class BlueskyApiError extends Error {
    status: number;
    data: any;
    constructor({ message, status, data, }: {
        message: string;
        status: number;
        data: any;
    });
}
export declare function fetchPostThread({ params, config, }: {
    params: PostThreadParams;
    config?: PostThreadConfig;
}): Promise<{
    data?: PostThread;
    notFound?: true;
    tombstone?: true;
}>;
