import type { StorageManagementContext } from "../../api/storageManagementContext.js"; import type { SkusListOptionalParams } from "../../api/skus/options.js"; import type { SkuInformation } from "../../models/models.js"; import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; /** Interface representing a Skus operations. */ export interface SkusOperations { /** Lists the available SKUs supported by Microsoft.Storage for given subscription. */ list: (options?: SkusListOptionalParams) => PagedAsyncIterableIterator; } export declare function _getSkusOperations(context: StorageManagementContext): SkusOperations; //# sourceMappingURL=index.d.ts.map