import { OpenFileDialogProps } from "@theia/filesystem/lib/browser"; import URI from "@theia/core/lib/common/uri"; declare type Props = { onShowFileDialog: (options: OpenFileDialogProps) => Promise; onShowAlert: (message: string) => void; getIsPathFile: (path: string) => Promise; }; declare const SyncActionScreen: (props: Props) => JSX.Element; export default SyncActionScreen; //# sourceMappingURL=SyncActionScreen.d.ts.map