/** * Copyright IBM Corp. 2024, 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 React from 'react'; export interface InterstitialScreenHeaderProps { /** * Provide the optional content for header section and will be render after header titles and before progress indicator. * People can make use of this if they want to have custom header. */ children?: React.ReactNode; /** * Provide an optional class to be applied to the containing node. */ className?: string; /** * Provide an optional title to be applied to the header >. */ headerTitle?: string; /** * Provide an optional sub title to be applied to the header >. */ headerSubTitle?: string; /** * Tooltip text and aria label for the Close button icon. */ closeIconDescription?: string; /** * Optional parameter to hide the progress indicator when multiple steps are used. */ hideProgressIndicator?: boolean; } export type EnrichedChildren = { children: React.ReactNode; stepTitle?: string; translateWithId?: (id: string) => string; }; declare const InterstitialScreenHeader: React.ForwardRefExoticComponent>; export default InterstitialScreenHeader; //# sourceMappingURL=InterstitialScreenHeader.d.ts.map