import React from 'react';
import { ReactNode } from 'react';
type Config = {
    title: ReactNode;
    content: ReactNode;
};
export type EcosystemProps = {
    config: Config[];
};
/**
 * Layout for the Ecosystem component, which renders tab buttons on the left side and content on the right side.
 * @param props
 * @constructor
 */
declare const EcosystemLayout: (props: EcosystemProps) => React.ReactNode;
export default EcosystemLayout;
//# sourceMappingURL=EcosystemLayout.d.ts.map