export type PresenterFormat = "json" | "yaml" | "markdown";
export declare const DEFAULT_PRESENTER_FORMAT: PresenterFormat;
export interface PresenterPayload {
    text: string;
    detailLevel?: string;
    structured?: unknown;
    context?: Record<string, unknown>;
    template?: string;
}
export declare function presentStructuredData(payload: PresenterPayload, format?: PresenterFormat): string;
