@carbon/ibm-products
Version:
Carbon for IBM Products
23 lines • 717 B
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 from 'react';
export interface CoachmarkButtonProps {
/**
* Provide an optional class to be applied to the containing node.
*/
className?: string;
/**
* The aria label.
*/
label: string;
}
/**
* Use CoachmarkButton for the target prop of a Coachmark component.
* @deprecated This component is deprecated.
*/
export declare const CoachmarkButton: React.ForwardRefExoticComponent<CoachmarkButtonProps & React.RefAttributes<HTMLButtonElement>>;
//# sourceMappingURL=CoachmarkButton.d.ts.map