1 | import * as React from "react";
|
2 | import { AbstractPureComponent } from "../../common";
|
3 | import { HTMLDivProps, Props } from "../../common/props";
|
4 | import type { DialogStepButtonProps } from "./dialogStepButton";
|
5 | export type DialogStepId = string | number;
|
6 | export interface DialogStepProps extends Props, Omit<HTMLDivProps, "id" | "title" | "onClick"> {
|
7 | |
8 |
|
9 |
|
10 | id: DialogStepId;
|
11 | |
12 |
|
13 |
|
14 | panel: JSX.Element;
|
15 | |
16 |
|
17 |
|
18 | panelClassName?: string;
|
19 | |
20 |
|
21 |
|
22 | title?: React.ReactNode;
|
23 | |
24 |
|
25 |
|
26 | backButtonProps?: DialogStepButtonProps;
|
27 | |
28 |
|
29 |
|
30 | nextButtonProps?: DialogStepButtonProps;
|
31 | }
|
32 |
|
33 |
|
34 |
|
35 |
|
36 |
|
37 | export declare class DialogStep extends AbstractPureComponent<DialogStepProps> {
|
38 | static displayName: string;
|
39 | render(): JSX.Element;
|
40 | }
|