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