import { CloudinaryAssetMgmtCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { DirectionEnum } from "../models/directionenum.js"; import { APIError } from "../models/errors/apierror.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Searches for folders whose attributes match a given expression * * @remarks * Lists the folders that match the specified search expression. Limited to 2000 results. If no parameters are passed, returns the 50 most recently created folders in descending order of creation time. */ export declare function foldersSearchFolders(client$: CloudinaryAssetMgmtCore, expression?: string | undefined, sort_by?: Array<{ [k: string]: DirectionEnum; }> | undefined, max_results?: number | undefined, next_cursor?: string | undefined, options?: RequestOptions): APIPromise>; //# sourceMappingURL=foldersSearchFolders.d.ts.map