import type { ReactNode } from 'react'; interface ItemProps { isAlone?: boolean; isWithOnlyOneOtherItem?: boolean; active?: boolean; children: NonNullable; } export interface StepsProps { vertical?: boolean; dots?: boolean; children: NonNullable; } export declare function Steps({ vertical, dots, children }: StepsProps): ReactNode; export declare namespace Steps { var Item: ({ isAlone, active, children, isWithOnlyOneOtherItem }: ItemProps) => ReactNode; } export {}; //# sourceMappingURL=index.d.ts.map