/**
 * Copyright IBM Corp. 2023, 2024
 *
 * This source code is licensed under the Apache-2.0 license found in the
 * LICENSE file in the root directory of this source tree.
 */
import React, { ReactNode } from 'react';
export interface GuidebannerElementLinkProps {
    /**
     * Provide the contents of the GuidebannerElementLink.
     */
    children: ReactNode;
    /**
     * Provide an optional class to be applied to the containing node.
     */
    className?: string;
}
/**
 * A link styled specifically for the GuidebannerElement.
 */
export declare const GuidebannerElementLink: React.ForwardRefExoticComponent<GuidebannerElementLinkProps & React.RefAttributes<any>>;
//# sourceMappingURL=GuidebannerElementLink.d.ts.map