import React from 'react';
interface ComponentsProps {
    components: any[];
    depth: number;
    exampleMode?: string;
    usageMode?: string;
}
declare const Components: React.FunctionComponent<ComponentsProps>;
export default Components;
