import type { UmbControllerHost } from '../../../libs/controller-api/index.js'; /** * A data source for the OEmbed that fetches data from a given URL. * @class UmbOEmbedServerDataSource * @implements {RepositoryDetailDataSource} */ export declare class UmbOEmbedServerDataSource { #private; /** * Creates an instance of UmbOEmbedServerDataSource. * @param {UmbControllerHost} host - The controller host for this controller to be appended to * @memberof UmbOEmbedServerDataSource */ constructor(host: UmbControllerHost); /** * Fetches markup for the given URL. * @param {string} unique * @memberof UmbOEmbedServerDataSource */ getOEmbedQuery({ url, maxWidth, maxHeight }: { url?: string; maxWidth?: number; maxHeight?: number; }): Promise>; }