import type { IncludePathsArray } from './include-paths-array.js';
/**
 * Representation of the 'ServiceNowConfigurationMinimal' schema.
 */
export type ServiceNowConfigurationMinimal = {
    /**
     * @example "destination-name"
     */
    destination: string;
    serviceNow?: {
        includePaths?: IncludePathsArray;
    } & Record<string, any>;
};
//# sourceMappingURL=service-now-configuration-minimal.d.ts.map