/**
 * A configuration service for the [NgbCarousel](#/components/carousel/api#NgbCarousel) component.
 *
 * You can inject this service, typically in your root component, and customize its properties
 * to provide default values for all carousels used in the application.
 */
export declare class NgbCarouselConfig {
    interval: number;
    wrap: boolean;
    keyboard: boolean;
    pauseOnHover: boolean;
    showNavigationArrows: boolean;
    showNavigationIndicators: boolean;
}
