/** * Utility function to extract rendered content from either a string or an object * containing raw and rendered properties. * * This handles the inconsistency in WordPress REST API responses where * some fields like caption and description can be either: * - A simple string * - An object with { raw: string, rendered: string } * * @param content - The content to extract raw value from * @return The rendered content string, falling back to raw or empty string if content is falsy */ export declare function getRenderedContent(content: string | { raw: string; rendered: string; } | undefined | null): string; //# sourceMappingURL=get-rendered-content.d.ts.map