/**
 * Representation of the 'SharePointSite' schema.
 */
export type SharePointSite = {
    /**
     * @example "sharepoint-site-name"
     */
    name: string;
    /**
     * @example [
     *   "/testFolder1",
     *   "/testFolder2"
     * ]
     */
    includePaths?: string[];
} & Record<string, any>;
//# sourceMappingURL=share-point-site.d.ts.map