UNPKG

501 BTypeScriptView Raw
1import * as React from "react";
2import type { ButtonSharedPropsAndAttributes } from "../button/buttonProps";
3import { type TooltipProps } from "../tooltip/tooltip";
4export type DialogStepButtonProps = Partial<ButtonSharedPropsAndAttributes> & {
5 /** If defined, the button will be wrapped with a tooltip with the specified content. */
6 tooltipContent?: TooltipProps["content"];
7};
8export declare function DialogStepButton({ tooltipContent, ...props }: DialogStepButtonProps): React.JSX.Element;