export type CreateVestingAddressResultClass = {
    address?: string | null;
    lockedUntil?: string;
    lockedUntilSlot?: number;
    unlockAddress?: string | null;
    pkh?: string | null;
    description?: string | null;
    actualSlot?: number;
};
