import { ExecutionRun } from '../stores/workflowStore'; interface ExecutionHistoryProps { /** Whether this is a guest user (shows ephemeral notice) */ isGuest?: boolean; /** Optional sign-up URL for guest notice CTA */ signUpUrl?: string; /** Optional callback when user wants to share a run (for FSC showcase integration) */ onShare?: (run: ExecutionRun) => void; } export declare function ExecutionHistory({ isGuest, signUpUrl, onShare }: ExecutionHistoryProps): import("react/jsx-runtime").JSX.Element; export {};