import { default as React } from 'react'; import { ILabel, ISample } from '@glodon-aiot/apis'; interface IPreSamplesProps { datasetId: string; versionId: string; onClose: VoidFunction; samples: ISample[]; labels: ILabel[]; fetchLength: VoidFunction; } declare const PreSamplesPage: React.FC; export default PreSamplesPage;