import type { CSSProperties } from 'react';
import type { AgentSource } from '../../sdk-types';
export interface SourceCardProps {
    source: AgentSource;
    style?: CSSProperties;
}
export declare function SourceCard({ source, style }: SourceCardProps): import("react/jsx-runtime").JSX.Element;
