/**
 * Representation of the 'Pipeline' schema.
 */
export type Pipeline = {
    /**
     * @example "uuid"
     */
    id?: string;
    /**
     * @example "MSSharePoint"
     */
    type?: string;
    configuration?: {
        /**
         * @example "destination-name"
         */
        destination?: string;
        sharePoint?: {
            site?: {
                /**
                 * @example "sharepoint-site-id"
                 */
                id?: string;
                /**
                 * @example "sharepoint-site-name"
                 */
                name?: string;
                /**
                 * @example [
                 *   "/testFolder1",
                 *   "testFolder2"
                 * ]
                 */
                includePaths?: string[];
            } & Record<string, any>;
        } & Record<string, any>;
    } & Record<string, any>;
} & Record<string, any>;
//# sourceMappingURL=pipeline.d.ts.map