import { Maybe } from '@openrewrite/types'; import { OptionInputObject } from '../../../jest'; import { OptionInput } from './graphql-requests'; /** * Transform an object with options (preferred shape in typescript) to * and array of input objects (shape for graphql request) */ export declare const transformOptionsObjectToArray: (options: OptionInputObject | undefined) => Maybe | undefined;