@carbon/ibm-products
Version:
Carbon for IBM Products
30 lines • 1.07 kB
TypeScript
/**
* Copyright IBM Corp. 2023, 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, { PropsWithChildren, ReactNode } from 'react';
export interface InterstitialScreenViewProps extends PropsWithChildren {
/**
* Provide the contents of the InterstitialScreenView.
*/
children?: ReactNode;
/**
* Optional class name for this component.
*/
className?: string;
/**
* The label to pass to the ProgressStep component.
*/
stepTitle?: string;
/**
* Optional method that takes in a message id and returns an internationalized string.
*/
translateWithId?: (id: string) => string;
}
/**
* An Onboarding component intended to be used as the child elements of the InterstitialScreen body component.
*/
export declare const InterstitialScreenView: React.ForwardRefExoticComponent<InterstitialScreenViewProps & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=InterstitialScreenView.d.ts.map