Files
video-gen/video-gen-admin/node_modules/antd/lib/steps/context.d.ts
T
2026-05-25 17:08:18 +08:00

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>;