import React from 'react'; import { Size } from '../utils'; export interface ListStepsContent { title: string; description?: string; isLightItem?: boolean; } interface ListStepsProps { content: ListStepsContent[]; size?: Size; isLight?: boolean; isNumbered?: boolean; } export declare const LISTSTEPS_CONTENT: ListStepsContent[]; export declare const LISTSTEPS_CONTENT_LARGE: ListStepsContent[]; export declare const LISTSTEPS_CONTENT_LIGHT_ITEMS: ListStepsContent[]; export declare const ListSteps: React.FC; export {};