import type { IncludePathsArray } from './include-paths-array.js';
/**
 * Representation of the 'GoogleDriveConfig' schema.
 */
export type GoogleDriveConfig = {
    /**
     * @example "SHARED_DRIVE"
     */
    resourceType: 'SHARED_FOLDER' | 'SHARED_DRIVE';
    /**
     * @example "0AGVUFpXcXc5Uk9PVA"
     */
    resourceId?: string;
    includePaths?: IncludePathsArray;
} & Record<string, any>;
//# sourceMappingURL=google-drive-config.d.ts.map