import { PublicKey } from '@metaplex-foundation/umi'; import { Serializer } from '@metaplex-foundation/umi/serializers'; export declare type Path = { proof: PublicKey[]; leaf: PublicKey; index: number; }; export declare type PathArgs = Path; export declare function getPathSerializer(maxDepth: number): Serializer;