UNPKG

485 BTypeScriptView Raw
1/// <reference types="react" />
2import { ButtonSharedPropsAndAttributes } from "../button/buttonProps";
3import { 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): JSX.Element;