import { Maybe, Nullish } from '@siafoundation/types'; /** * Ensure the data is an empty array if the response returns null. * This makes responses consistent and allows other methods to distinguish * between a loading state and an empty state. * @param data Nullish * @returns Maybe */ export declare function maybeFromNullishArrayResponse(data: Nullish): Maybe;