/** * 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 from 'react'; interface CoachmarkHeaderProps { /** * Function to call when the close button is clicked. */ onClose?: () => void; /** * Show/hide the "X" close button. */ showCloseButton?: boolean; /** * Determines the theme of the component. */ theme?: 'light' | 'dark'; } /** * DO NOT USE. This component is for the exclusive use * of other Onboarding components. * @deprecated This component is deprecated. */ export declare const CoachmarkHeader: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=CoachmarkHeader.d.ts.map