import type React from "react"; import type { ConnectionDetails, FilePickerOptions, ThemeColors } from "../../types"; interface GoogleDrivePickerProps { connectionDetails: ConnectionDetails; options: FilePickerOptions; themeColors: ThemeColors; onClose: () => void; } declare global { interface Window { gapi: any; google: any; } } export declare const GoogleDrivePicker: React.FC; export {}; //# sourceMappingURL=GoogleDrivePicker.d.ts.map