import React from 'react'; /** * Props for {@link ImportInfoCard}. * * @public */ export interface ImportInfoCardProps { exampleLocationUrl?: string; exampleRepositoryUrl?: string; } /** * Shows information about the import process. * * @public */ export declare const ImportInfoCard: (props: ImportInfoCardProps) => React.JSX.Element;