import { IpfsCommonContent, CommonContent } from '../types'; import { ContentFilter } from './types'; declare type HasContent = { content?: CommonContent | IpfsCommonContent; }; declare type Props = ContentFilter & { structs: T[]; }; export declare const isEmptyIpfsContent: (struct?: HasContent | undefined) => boolean; export declare const notEmptyIpfsContent: (struct?: HasContent | undefined) => boolean; export declare function contentFilter({ structs, withContentOnly }: Props): T[]; export {};