/**
 * @license
 *
 * Copyright IBM Corp. 2025, 2025
 *
 * 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 { LitElement } from 'lit';
/**
 * Page header Breadcrumb Bar.
 * @element c4p-page-header-breadcrumb
 */
declare class CDSPageHeaderBreadcrumb extends LitElement {
    /**
     * Specify if breadcrumb bar has bottom border.
     */
    border: boolean;
    /**
     * Set to `true` if the breadcrumb bar is sitting within a grid
     * (ie. when used in tandem with page-header-hero-image)
     */
    withinGrid: boolean;
    /**
     * Set to `true` if page actions should be flush (no padding)
     */
    pageActionsFlush: boolean;
    /**
     * Set to `true` if content actions should be flush (no padding)
     */
    contentActionsFlush: boolean;
    context: any;
    render(): import("lit-html").TemplateResult<1>;
    static styles: any;
}
export default CDSPageHeaderBreadcrumb;
