10 lines
305 B
TypeScript
10 lines
305 B
TypeScript
import * as React from 'react';
|
|
export interface InternalContextProps {
|
|
rootComponent: string;
|
|
itemComponent: string;
|
|
}
|
|
/**
|
|
* When use this context. Will trade as sub component instead of root Steps component.
|
|
*/
|
|
export declare const InternalContext: React.Context<InternalContextProps | null>;
|