import React from 'react';
export type PlatformInstructionProps = {
    cavaticaConnectAccountURL?: string;
};
type ExternalAnalysisPlatformDescription = {
    name: string;
    description: string;
    Logo: React.ComponentType<React.SVGProps<SVGSVGElement>>;
    PlatformInstructions?: React.ComponentType<PlatformInstructionProps>;
};
export type ExternalAnalysisPlatform = 'cavatica' | 'terra' | 'adworkbench' | 'pluto' | 'plutodev';
export declare const EXTERNAL_ANALYSIS_PLATFORMS: Record<ExternalAnalysisPlatform, ExternalAnalysisPlatformDescription>;
export {};
//# sourceMappingURL=ExternalAnalysisPlatformsConstants.d.ts.map