import type { BuilderContextInterface } from '../../context/types';
import type { BuilderContent } from '../../types/builder-content';
export interface SymbolInfo {
    model?: string;
    entry?: string;
    data?: any;
    content?: BuilderContent;
    inline?: boolean;
    dynamic?: boolean;
}
export declare const fetchSymbolContent: ({ builderContextValue, symbol }: {
    symbol: SymbolInfo | undefined;
    builderContextValue: BuilderContextInterface;
}) => Promise<BuilderContent | null | undefined>;
