export = FeaturedSnippet;
declare class FeaturedSnippet {
    constructor($: any);
    /** @type {string | null} */
    title: string | null;
    /** @type {string | null} */
    description: string | null;
    /** @type {string | null} */
    url: string | null;
}
