/**
 * Displays the FACTIFAI logo in a minimal, pretty box
 */
export declare const displayFactifaiLogo: () => void;
export declare const executeBrowserTask: (instruction: string, sessionId: string, options?: {
    noReport?: boolean;
    reportFormat?: string;
    skipAnalysis?: boolean;
}) => Promise<{
    success: boolean;
    error: string;
    testSteps: {
        id: number;
        instruction: string;
        status: "not_started" | "in_progress" | "passed" | "failed";
        notes: string;
    }[];
    testSummary: string | null;
} | {
    success: boolean;
    testSteps: {
        id: number;
        instruction: string;
        status: "not_started" | "in_progress" | "passed" | "failed";
        notes: string;
    }[];
    testSummary: string | null;
    error?: undefined;
}>;
export * from "./core/graph/graph";
//# sourceMappingURL=index.d.ts.map