geoiq-frontend-ui-kit
Version:
This project is a UI kit for GeoIQ's frontend. It's built with React, TypeScript, and Vite.
12 lines (11 loc) • 585 B
TypeScript
import { default as React, PropsWithChildren } from 'react';
import { StepperValue } from './stepper.type';
interface StepperProviderProps extends PropsWithChildren {
steps: StepperValue[];
id?: string;
}
declare const StepperContext: React.Context<StepperValue[] | null>;
declare const StepperProvider: React.ForwardRefExoticComponent<StepperProviderProps & React.RefAttributes<HTMLDivElement>>;
declare const StepGroup: () => import("react/jsx-dev-runtime").JSX.Element;
export { StepperProvider, StepperContext, StepGroup };
//# sourceMappingURL=stepper-components.d.ts.map